触摸事件
Posted laugh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了触摸事件相关的知识,希望对你有一定的参考价值。
iOS中的事件
在用户使用app过程中,会产生各种各样的事件
ios中的事件可以分为3大类型
响应者对象
在iOS中不是任何对象都能处理事件,只有继承了UIResponder的对象才能接收并处理事件。我们称之为“响应者对象”
UIApplication、UIViewController、UIView都继承自UIResponder,因此它们都是响应者对象,都能够接收并处理事件
UIResponder
UIResponder内部提供了以下方法来处理事件
Ø触摸事件
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event;
Ø加速计事件
- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event;
- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event;
- (void)motionCancelled:(UIEventSubtype)motion withEvent:(UIEvent *)event;
Ø远程控制事件
- (void)remoteControlReceivedWithEvent:(UIEvent *)event;
!--EndFragment-->!--StartFragment-->!--EndFragment-->!--StartFragment-->
以上是关于触摸事件的主要内容,如果未能解决你的问题,请参考以下文章