I'm trying to have the advantage of the UITextView with Data Detector Types inside a TableViewCell that is itself clickable.
The only thing is, I need the UITextView's links to be clickable, so userInteractionEnabled = YES, unfortunately this will prevent any touch going through to the UITableViewCell.
Of course the UITextView can't be edited, I also subclassed it refusing it to be first responder to avoid selecting text in it.
The only thing I need, is detecting that if a user touch the UITextView, check if it was a link, if it is then opening the link, otherwise redirect the touch on the UITableViewCell.
any idea how can this be done ?
much like the twitter App (we can either click on the row, or on the link...)