pressesCancelled(_:with:)
Tells this object when a system event (such as a low-memory warning) cancels a press event.
Declaration
func pressesCancelled(_ presses: Set<UIPress>, with event: UIPressesEvent?)Parameters
Discussion
UIKit calls this method when it receives a system interruption requiring cancellation of the press sequence. An interruption is anything that causes the application to become inactive or causes the view handling the press events to be removed from its window. Your implementation of this method should clean up any state associated with handling the press sequence. Failure to handle cancellation is likely to lead to incorrect behavior or crashes.
The default implementation of this method forwards the message up the responder chain. When creating your own subclasses, call super to forward any events that you don’t handle yourself.