I have a UITableView where my cells handle all the touches instead of the tableview itself. The cells need to respond to both single and double taps instantaneously. (And yes, that does mean the single tap is called then the double tap afterwards, I want them both called).
The single tap action is to drop in another cell below the tapped cell (the cell is a menu for the above cell). I use insertRowsAtIndexPaths for this. However during that animation user interaction seems to fail completely, so I can't pick up on the second tap to fire off that action.
Using 2 UITapGestureRecognizers (a single and double tap) and setting the single to wait for the double to fail works, but causes noticeable delays in the single tap action.
I know during UIView animations you can flag it UIViewAnimationOptionAllowUserInteraction and it will work fine, however that's not an option in UITableView.
Any thoughts of how I can continue to pick up touch events during the tablview animations?
I've tried using UITapGestureRecognizers, using touchesEnded and touchesBegan, none have registered touches during animations.