I have a UITextView
on a custom UITableViewCell
and when I click on the UITextView
, it does not trigger the didSelectRowAtIndexPath
, how do I change this behavior so that that delegate is called as intended?
Ive tried putting the User enabled property of UITextView
to false. When doing so it responds to the didSelect. But then Im not able to select the links that are mentioned in the TextView, which essentially is the main reason why i chose to go ahead with UITextView
.
Any help or pointer guys