views:

148

answers:

1

Is there a way to determine where in the cell was tapped?

I am currently using tableView:didSelectRowAtIndexPath but this only tells me that the cell was selected.

+1  A: 

Override the UITableViewCell class, and in your table view's data source, return instances of your overridden class. Then, in the implementation for that class, override the UIResponder methods dealing with touch handling - you can get the exact point in the cell that received a touch, what kind of touch it was (single-tap, double-tap, etc.) as well as deal with drags and swipes separately.

Tim