I’m using UITableViewCellEditingStyleDelete in my project.
Now both the left and right swip gesture will active the delete button.
I want only the left swipe gesture to active the delete button, and make right swipe gesture to response to another method(to pop viewController).
How can I implement this?
Thanks very much.
You can add your own custom UIGestureRecognizers, perhaps to the view of a UITableViewCell subclass, instead of using the built-in behaviors of UITableView.