I currently have a UITextView which has this property setup to detect URL's:
txtTemp.dataDetectorTypes = UIDataDetectorTypeLink;
The URL displays correctly, formatting in blue with an underline.
I want to change the formatting of this hyperlink to a bold font style with no underline. The rest of the regular text in the UITextView needs to stay the same.
Can someone please tell me how to do this?