如何“排外”处理多点触摸事件

来源:互联网 发布:用手机发布淘宝宝贝 编辑:程序博客网 时间:2024/04/30 11:01

    经常有网友问,如何避免同时处理多个多点触摸事件?实际上,在Apple的官方文档中已经提供了解决方案。

    Apple在UIView的multipleTouchEnabled属性的讨论中提到:如果你希望这个视图“排外”处理多点触摸事件,只需要把组的这一属性,属性的值是multipleTouchEnabled和exclusivetouch的值同时设为YES。

multipleTouchEnabledA Boolean value that indicates whether the receiver handles multi-touch events.@property(nonatomic, getter=isMultipleTouchEnabled) BOOL multipleTouchEnabledDiscussionWhen set to YES, the receiver receives all touches associated with a multi-touch sequence. When set to NO, the receiver receives only the first touch event in a multi-touch sequence. The default value of this property is NO.Other views in the same window can still receive touch events when this property is NO. If you want this view to handle multi-touch events exclusively, set the values of both this property and the exclusiveTouch property to YES.AvailabilityAvailable in iOS 2.0 and later.See Also  @property exclusiveTouchRelated Sample CodeaurioTouch2Declared InUIView.h



0 0