Use this tag for questions related to touchesCancelled:withEvent, a UIResponder event-handling method in the UIKit framework and MonoTouch.UIKit Namespace.
touchesCancelled:withEvent: is a UIResponder event-handling method in the UIKit framework and MonoTouch.UIKit Namespace that is triggered when a touch event is cancelled.
Along with touchesBegan:withEvent:, touchesEnded:withEvent:, and touchesMoved:withEvent:, it is one of the primary touch event-handling methods.
Syntax Examples
func touchesCancelled(_ touches: Set<UITouch>?,
withEvent event: UIEvent?)
- (void)touchesCancelled:(NSSet<UITouch *> *)touches
withEvent:(UIEvent *)event
[MonoTouch.Foundation.Export("touchesCancelled:withEvent:")]
public virtual Void TouchesCancelled (NSSet touches, UIEvent evt)