NSTextView making bold text using an array
问题 I have an array which has the following structure: ( [0] = ( [0] = @"Title string" [1] = @"Some content string" ) [1] = ( [0] = @"Title string" [1] = @"Some content string" ) [2] = ( [0] = @"Title string" [1] = @"Some content string" ) ... ) and so on and so fourth to a variating amount of reoccurrence. My goal is to try and merge it all into one single string to display in an NSTextField, and make every title string bold. So the code above would look something like this if it were outputted.