I created a custom UITableViewCell
and placed a UITextView
element on it. Now when I click on the UITextView
inside the cell tableView:didSelectRowAtIndexPath:
is not called (in the superview which is a UITableViewController
).
Should I make the UITextView
"transparent" or something? How can I do that? I get the same effect when adding a button.
Adjust the userInteractionEnabled
property to NO
someTextView.userInteractionEnabled = NO;
Documentation here: http://developer.apple.com/library/ios/documentation/uikit/reference/UIView_Class/UIView/UIView.html#//apple_ref/occ/instp/UIView/userInteractionEnabled
Similar question here: iOS: Selecting through UITextView on custom UITableViewCell
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With