I am using a little bit of code to change the text in an NSTextView
NSString *string = @"This is a title\n\nThis is some info";
[content setString:string];
I would like to make the text "This is a title" the only text that is bold when displaying in the NSTextView and the rest normal text. Is there any way to do this? Maybe like how the StackOverflow editor works? __bold text here__
Thanks in advance!