gestureRecognizer(_:shouldRequireFailureOf:)
Asks the delegate if the current gesture recognizer must wait to recognize its gesture until the specified gesture recognizer fails.
Declaration
@MainActor optional func gestureRecognizer(_ gestureRecognizer: NSGestureRecognizer, shouldRequireFailureOf otherGestureRecognizer: NSGestureRecognizer) -> BoolParameters
- gestureRecognizer:
The gesture recognizer that might need to wait to recognize its gesture. This is the object with which the delegate is associated.
- otherGestureRecognizer:
The gesture recognizer that must fail before the object in
gestureRecognizercan recognize its gesture.
Return Value
true if otherGestureRecognizer must fail before gestureRecognizer is allowed to recognize its gesture. If you do not implement this method, the default return value is false.
Discussion
This method is called once per attempt to recognize, so you can change the failure requirements dynamically. The two gesture recognizers do not have to belong to the same view hierarchy.
Returning true is guaranteed to set up the failure requirement; returning false does not prevent the failure requirement from being set up by the other gesture recognizer.