Reputation: 93
I have swipe gesture
@IBAction func rightSwipe(_ sender: UISwipeGestureRecognizer) {
self.view.backgroundColor = UIColor.green
}
I want to temporarily disable this swipe using long press.
@IBAction func LongPress(_ sender: UILongPressGestureRecognizer) {
}
How can I do it?
Upvotes: 2
Views: 687