Contents

pressesCancelled(_:with:)

Sent to the receiver when a system event (such as a low-memory warning) cancels a press event.

Declaration

func pressesCancelled(_ presses: Set<UIPress>, with event: UIPressesEvent)

Parameters

  • presses:

    A set of Uipress instances in the event represented by event that represent the touches in the Cancelled phase.

  • event:

    A Uievent object that includes a reference to press.

Mentioned in

Discussion

This method has the same signature as the corresponding one declared by UIResponder. With this method a gesture recognizer receives press objects (in their UIPress.Phase.cancelled phase) before the view attached to the gesture recognizer receives them. UIGestureRecognizer objects are not in the responder chain, yet they observe presses hit-tested to their view and their view’s subviews.

If the gesture recognizer is interpreting a continuous gesture, it should set its state to UIGestureRecognizer.State.began upon receiving this message. If at any point in its handling of the press objects the gesture recognizer determines that the press event sequence is not its gesture, it should set its state to UIGestureRecognizer.State.cancelled.

See Also

Implementing subclasses