Is it possible to recognize gestures and touches simultaneously when interacting with a UIKit object. For example, when a user is scrolling through a slider or pickerview, could I also be handling a swipe gesture?
Is it possible to recognize gestures and touches simultaneously when interacting with a UIKit
Share
If you set your view controller to be the delegate of your gestures, you can implement:
I’m not sure if you’re also trying to have the view handle touch events separately, but if you are, I’d recommend subclassing UIGestureRecognizer and handle touch events there.