iphone 开发 用户点击,触摸和手势识别 解析

原文地址:http://blog.csdn.net/dongstone/article/details/7505734



用户对屏幕(人机交互)的所有操作都可称为事件。事件包括用户点击,触摸和手势识别等。

一:UIView及UIViewController都继承自UIResponder类,而具有在屏幕上显示功能的类及其控制器类(UIControl)也都继承自UIView,所以他们都时响应者(即所有视图和所由控件都是响应者)。

内容结构图:


二:响应着链:事件是向上传递的(这点类似于java中的异常处理:throw),当当前响应者处理不了事件的时,他会将此事件传递给他的父视图,逐级向更高一层(下一个对象)传递。

如果窗口处理不了当前事件,此事件将会被传递到应用程序的UIApplication实例。如果还是处理不了,此事件将进入睡眠状态。

响应者链图:


转发事件:从上面可以看到,事件是在逐个对象间的传递,当视图(如:表视图)不包含动作事件(如:轻扫手势)时,可能不会执行传递工作,这样其他对象将无法获得响应,阻止了其他视图的手势识别。这时就需要手动去传递:在下一个响应者上调用相同的方法来传递该对象,
[plain]  view plain copy
  1. -(void)<span style="background-color: rgb(153, 255, 153);">responder</span>:(UIEvent*)event{  
  2. //如果可处理传递事件,执行此句:  
  3. [self handleEvent:event ];  
  4.   
  5. //否则手动传递到下一个响应者(递归)  
  6. [self.nextResponder <span style="background-color: rgb(153, 255, 153);">responder</span>:event ];  
  7. }  

三:  4个通知手势的方法:

1.开始触摸:
[plain]  view plain copy
  1. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {  
  2.     [super touchesMoved:touches withEvent:event];  
  3.     //touches :动作的数量()  每个对象都是一个UITouch对象,而每一个事件都可以理解为一个手指触摸。  
  4.     //获取任意一个触摸对象  
  5.     UITouch *touch = [touches anyObject];  
  6.     //获得触摸对象的点击数量,只捕捉一个触摸对象的点击。  
  7.     NSInteger numTaps=[touch tapCount];  
  8.     //获得触摸对象的数量  
  9.     NSInteger numTouchs=[touches count];  
  10.       
  11.     //触摸对象的位置  
  12.     CGPoint previousPoint = [touch previousLocationInView:self.view];  
2.移动:
[plain]  view plain copy
  1. <pre name="code" class="plain">- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {  
  2.    
  3. }</pre>  
  4. <pre></pre>  
  5. 3.离开:  
  6. <pre></pre>  

[plain]  view plain copy
  1. - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {  
  2.    
  3. }  

4.取消:  电话呼入等中断手势时,会调用此方法。
[plain]  view plain copy
  1. - (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event {  
  2.    
  3. }  

四:手势识别器(UIGestureRecognizer):可以理解成一个容器,里面可添加它的子类(如:捏合(UIPinchGestureRecognizer),轻扫(UISwiperGestureRecognizer),点击(UITapGestureRecognizer)),这些子类都是封装好的,可响应屏幕上的事件进行处理。当然也可自定义手势识别器的子类,来响应需要的事件,这样显得更灵活些。

1.调用系统的手势识别器 以捏合为例:

[plain]  view plain copy
  1. - (void)viewDidLoad {  
  2.     [super viewDidLoad];  
  3.     //实例化捏合手势识别器,将实例好的手势识别器对象作为实参传递到doPinch:。  
  4.     UIPinchGestureRecognizer *pinch = [[[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(doPinch:)] autorelease];  
  5.     //将实例化捏合手势识别器加入视图识别器中。  
  6.     [self.view addGestureRecognizer:pinch];  
  7. }  
  8.   
  9. - (void)doPinch:(UIPinchGestureRecognizer *)pinch {  
  10.     //如果开始触发  
  11.     if (pinch.state == UIGestureRecognizerStateBegan) {  
  12.       CGFloat  initialFontSize = label.font.pointSize;  
  13.     } else {  
  14.         //按照捏合比例扩大或缩小  
  15.         label.font = [label.font fontWithSize:initialFontSize * pinch.scale];  
  16.     }  
  17. }  

2.自定义手势识别器:

自定义MyGestureRecognizerView。

MyGestureRecognizerView.h

[plain]  view plain copy
  1. #import <UIKit/UIKit.h>  
  2.   
  3. @interface MyGestureRecognizerView : UIGestureRecognizer  
  4.   
  5. @end  

MyGestureRecognizerView.m

[plain]  view plain copy
  1. #import "MyGestureRecognizerView.h"  
  2.   
  3. @implementation MyGestureRecognizerView  
  4. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {  
  5.     [super touchesBegan:touches withEvent:event];  
  6.       
  7.     //可以填写自己所需要的识别机制。。。。。。  
  8.       
  9.     //获取任意一个触摸对象  
  10.     UITouch *touch = [touches anyObject];  
  11.     //获得触摸对象的点击数量,只捕捉一个触摸对象的点击。  
  12.      NSInteger numTaps=[touch tapCount];  
  13.     //获得触摸对象的数量  
  14.      NSInteger numTouchs=[touches count];  
  15.       
  16.     //触摸对象的位置  
  17.     CGPoint previousPoint = [touch previousLocationInView:self.view];  
  18.       
  19.     }  
  20.   
  21. - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {  
  22.     [super touchesMoved:touches withEvent:event];  
  23.       
  24.    //可以填写自己所需要的识别机制。。。。。。。  
  25. }  
  26. @end  

在主视图控制器中:

HelloViewController.h
[plain]  view plain copy
  1. #import <UIKit/UIKit.h>  
  2.   
  3. @interface HelloViewController : UIViewController  
  4.   
  5. @end  

HelloViewController.m

[plain]  view plain copy
  1. #import "HelloViewController.h"  
  2. #import "MyGestureRecognizerView.h"  
  3. @interface HelloViewController ()  
  4.   
  5. @end  
  6.   
  7. @implementation HelloViewController  
  8.   
  9. - (void)viewDidLoad  
  10. {  
  11.       
  12.     MyGestureRecognizerView *mygest=[[MyGestureRecognizerView alloc] initWithTarget:self action:@selector(doit:)];  
  13.       
  14.     [self.view addGestureRecognizer:mygest];  
  15.     [super viewDidLoad];  
  16.     // Do any additional setup after loading the view, typically from a nib.  
  17. }  
  18.   
  19. -(void)doit:(MyGestureRecognizerView *)my{  
  20.       
  21. }  
  22.   
  23. - (void)viewDidUnload  
  24. {  
  25.     [super viewDidUnload];  
  26.     // Release any retained subviews of the main view.  
  27. }  
  28.   
  29. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation  
  30. {  
  31.     return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);  
  32. }  
  33.   
  34. @end  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值