UIView.MultipleTouchEnabled Property

Definition

Controls whether the UIView can handle multitouch events.

[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual bool MultipleTouchEnabled { [Foundation.Export("isMultipleTouchEnabled")] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)] get; [Foundation.Export("setMultipleTouchEnabled:")] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)] set; }
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