I have the following NSString:
NSString *example = @" I like cheese and ham and eggs, but ham more than cheese and cheese more than ham!";
I'd like to change this into an NSAttributable string so that I can output this in a UITextView where cheese becomes a hyperlink to www.cheese.com and ham becomes a hyperlink to www.ham.com
Is this at all possible?
Matt