<SceneControlTouchDelegate>协议参考
三维场景控件触控动作委托类。 更多...
公有成员 | |
(void) | - touchesBegan:withEvent: |
第一次触摸屏幕时响应该方法。 | |
(void) | - touchesMoved:withEvent: |
手指移过屏幕时响应该方法。 | |
(void) | - touchesEnded:withEvent: |
手指离开屏幕时响应该方法。 | |
(void) | - touchesCancelled:withEvent: |
当发生某些事件导致手势中断时响应该方法,调用该方法就不会响应 touchesEnded方法。 |
详细描述
三维场景控件触控动作委托类。
成员函数文档
- (void) touchesBegan: | (NSSet *) | touches | ||
withEvent: | (UIEvent *) | event | ||
第一次触摸屏幕时响应该方法。
- 参数:
-
touches UITouch对象的集合,它只包含 Began 状态的触控动作。 event 触控动作引发的UI事件,它关联了一些列UITouch对象来代表发生该事件时所处于各种状态下(Began、Moved、Ended和Cancelled)的触控动作。
- (void) touchesCancelled: | (NSSet *) | touches | ||
withEvent: | (UIEvent *) | event | ||
当发生某些事件导致手势中断时响应该方法,调用该方法就不会响应 touchesEnded方法。
- 参数:
-
touches UITouch对象的集合,它只包含 Cancelled 状态的触控动作。 event 触控动作引发的UI事件,它关联了一些列UITouch对象来代表发生该事件时所处于各种状态下(Began、Moved、Ended和Cancelled)的触控动作。
- (void) touchesEnded: | (NSSet *) | touches | ||
withEvent: | (UIEvent *) | event | ||
手指离开屏幕时响应该方法。
- 参数:
-
touches UITouch对象的集合,它只包含 Ended 状态的触控动作。 event 触控动作引发的UI事件,它关联了一些列UITouch对象来代表发生该事件时所处于各种状态下(Began、Moved、Ended和Cancelled)的触控动作。
- (void) touchesMoved: | (NSSet *) | touches | ||
withEvent: | (UIEvent *) | event | ||
手指移过屏幕时响应该方法。
- 参数:
-
touches UITouch对象的集合,它只包含 Moved 状态的触控动作。 event 触控动作引发的UI事件,它关联了一些列UITouch对象来代表发生该事件时所处于各种状态下(Began、Moved、Ended和Cancelled)的触控动作。
该协议的文档由以下文件生成:
版权所有©2005-2021 北京超图软件股份有限公司。保留所有权利。