Select a UITableViewCell containing a subview
Hi all,
I'm currently facing a problem with UITableView:
The first cell of my table is a custom UITableViewCell, containing an UIScrollView.
When I click in my cell but not in the scrollview, the didSelectRowAtIndexPath method of my UITableViewController is correctly called.
But when I click on the scrollview, the method isn't called.
How can I get the subview of an UITableViewCell to react to touch events ?
Do I have to implement touchesBegan / touchesEnded methods in my scrollview ?
Thanks
|