I have custom UITableViewCells that contain a UITextView. I have link detection in the UITextView turned on in Interface Builder. When I first load the table view, everythin
None of these answers worked for me (iOS8, Swift), the only thing that worked for me was to first set the text to nil
and then prepend the new text with a non-visibile whitespace unicode character (I chose \u200B
, which is the ZERO WIDTH SPACE character but any character works):
textView.text = nil
textView.text = "\u{200B}\(newText)"