I am making a grid view. It subclasses tableview and lays out multiple subcells (columns) per cell. That's all working fine.
Now, I need to detect when an individual sub-cell is tapped. I have overriden touchesEnded in the grid view. Is there a way I can take that NSSet
of UITouch
objects and detect whether it was a touch up inside or some other gesture?
I could write custom code, but it might be hard to get it perfect.