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
You can fix this issue by using NSAttributedString.
cell.textview.attributedText = [[NSAttributedString alloc] initWithString:message.message];