Reputation: 2123
I have left and right swipe gesture recognizers on top of a table view. It works, but your swipe needs to be almost perfectly horizontal. It looks like your swipe needs to be between -10 and 10 degrees or so. How can I make that more like -35 to 35?
Upvotes: 0
Views: 384
Reputation: 40492
There isn't any way to configure the UISwipeGestureRecognizer
gesture to be more forgiving. Your only option would be to create a custom swipe gesture which does what you want.
Upvotes: 1