识别单击还是双击 (转)

在视图上同时识别单击手势和双击手势的问题在于,当检测到一个单击操作时,无法确定是确实是一个单击操作或者只是双击操作中的第一次点击。解决这个问题的 方法就是:在检测到单击时,需要等一段时间等待第二次点击,如果没有第二次点击,则为单击操作;如果有第二次点击,则为双击操作。

检测手势有两种方法,一种是定制子视图,重写视图从UIResponder类中继承来的事件处理方法,即touchesBegan:withEvent:等一系列方法来检测手势;另一个方法是使用手势识别器,即UIGestureRecognizer的各种具体子类。

一.重写事件处理方法

[objc] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. - (id)init {  
  2.     if ((self = [super init])) {  
  3.         self.userInteractionEnabled = YES;  
  4.         self.multipleTouchEnabled = YES;  
  5.         // ...  
  6.     }  
  7.     return self;  
  8. }  
  9. -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event  
  10. {  
  11.     [NSObject cancelPreviousPerformRequestsWithTarget:self];  
  12.     UITouch *touch = [touches anyObject];  
  13.     CGPoint touchPoint = [touch locationInView:self];  
  14.   
  15.     if (touch.tapCount == 1) {  
  16.         [self performSelector:@selector(handleSingleTap:) withObject:[NSValue valueWithCGPoint:touchPoint] afterDelay:0.3];  
  17.     }else if(touch.tapCount == 2)  
  18.     {  
  19.         [self handleDoubleTap:[NSValue valueWithCGPoint:touchPoint]];  
  20.     }  
  21. }  
  22.   
  23. -(void)handleSingleTap:(NSValue*)pointValue  
  24. {  
  25.     CGPoint touchPoint = [pointValue CGPointValue];  
  26.     //...  
  27. }  
  28.   
  29. -(void)handleDoubleTap:(NSValue*)pointValue  
  30. {  
  31.     CGPoint touchPoint = [pointValue CGPointValue];  
  32.     //...  
  33. }  

 

  1. 首先确认定制视图的userInteractionEnabledmultipleTouchEnabled属性都为YES.
  2. touchesEnded:withEvent:方法中,如果是第一次触摸结束,则cancelPreviousPerformRequestsWithTarget:方法不会起作用,因为self未调度任何方法,此时tapCount为1,使用performSelector:withObject:afterDelay:调用单击事件处理方法,在0.3s钟后执行。
    [self performSelector:@selector(handleSingleTap:) withObject:[NSValue valueWithCGPoint:touchPoint] afterDelay:0.3];

    如果这是一个单击操作,则后面0.3钟内不会再有触摸事件,则handleSingleTap:方法执行,这样识别出了单击操作。

  3. 如果这是一个双击操作,则第二次点击在0.3s内触发,在第二次触摸操作的touchesEnded:withEvent:方法中,cancelPreviousPerformRequestsWithTarget:首先会取消之前对handleSingleTap:方法的调度,使之不会执行,然后在调用handleDoubleTap:方法处理双击操作。

二.使用Gesture Recognizer

使用Gesture Recognizer识别就会简单许多,只需添加两个手势识别器,分别检测单击和双击事件,设置必要的属性即可。

 

[objc] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. - (id)init {  
  2.     if ((self = [super init])) {  
  3.     self.userInteractionEnabled = YES;  
  4.         UITapGestureRecognizer *singleTapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(handleSingleTap:)];  
  5.         singleTapGesture.numberOfTapsRequired = 1;  
  6.         singleTapGesture.numberOfTouchesRequired  = 1;  
  7.         [self addGestureRecognizer:singleTapGesture];  
  8.   
  9.         UITapGestureRecognizer *doubleTapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(handleDoubleTap:)];  
  10.         doubleTapGesture.numberOfTapsRequired = 2;  
  11.         doubleTapGesture.numberOfTouchesRequired = 1;  
  12.         [self addGestureRecognizer:doubleTapGesture];  
  13.   
  14.         [singleTapGesture requireGestureRecognizerToFail:doubleTapGesture];  
  15.     }  
  16.     return self;  
  17. }  
  18. -(void)handleSingleTap:(UIGestureRecognizer *)sender{  
  19.     CGPoint touchPoint = [sender locationInView:self];  
  20.     //...  
  21. }  
  22. -(void)handleDoubleTap:(UIGestureRecognizer *)sender{  
  23.     CGPoint touchPoint = [sender locationInView:self];  
  24.     //...  
  25. }  

 

 

唯一需要注意的是

  1. [singleTapGesture requireGestureRecognizerToFail:doubleTapGesture];  

这句话的意思时,只有当doubleTapGesture识别失败的时候(即识别出这不是双击操作),singleTapGesture才能开始识别,同我们一开始讲的是同一个问题。

posted @ 2014-05-13 01:27  Awesome赛  阅读(312)  评论(0编辑  收藏  举报