Share via


UIView.MultipleTouchEnabled Property

Definition

Controls whether the UIView can handle multitouch events.

[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual bool MultipleTouchEnabled { [Foundation.Export("isMultipleTouchEnabled")] get; [Foundation.Export("setMultipleTouchEnabled:")] set; }
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
[<get: Foundation.Export("isMultipleTouchEnabled")>]
[<set: Foundation.Export("setMultipleTouchEnabled:")>]
member this.MultipleTouchEnabled : bool with get, set

Property Value

State of multiple touch recotgnition.

Attributes

Remarks

UIViews by default only handle a single touch event at once. If you want your view to handle multiple touches, you must set this property to true.

Applies to