I've been asked to create a custom UITableViewCell with multiple areas that can be tapped.
These areas won't have buttons or any graphics - they'll be invisible. 3 different methods will be called depending on which third of the cell the user taps i.e.
|| decrementFooCount || viewFooDetails || incrementFooCount ||
The cell has a few labels on it that need to be visible at all times - the fooName and fooCount.
I'm thinking perhaps three hidden UIButtons over the cell?
I also need to maintain the swipe to delete default behavior.