I have 4 subviews in a UIViewController page arranged as a grid. Sometimes, animations will be running on the subviews. I am trying to recognize taps on one of the subviews (using UITapGestureRecognizer).
Now, the when animation is not running, taps are recognized smoothly. But, when an animation is running, most of my taps are not recognized at all (even when animation is running on another subview).
Is there any way to increase priority of the Gesture recognizer than the animation ? Any suggestions are appreciated. Thanks