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
Several suggestions here and through links provided did not help me with this bug.
I tried setting attributed text, setting text to nil, setting text to @"".
In the end forcing the text view in an out of editable mode did the trick. In prepare for reuse
- (void)prepareForReuse
{
...
textView.editable = YES;
textView.editable = NO;
...
}