大家都知道,苹果的设备,不管是mac机器还是iPhone或iad,都支持多点触控,进而延伸了多种手势识别的功能。这为用户带来了很大的便携性和多样灵活性,极大的方便了用户的使用。足以见手势识别(GestureRecognizers)在开发中也有举足轻重的作用。

在iOS 4以前,手势识别由开发人员负责。

主要使用的是由UIResponder而来的如下4种方式:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
 - (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
 - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
 - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event

这往往需要进行复杂的数学运算才能甄别不用的手势,苹果意识到这种情况的复杂性和手势对iPhone用户界面的重要性之后,在iOS4中加入了UIGestureRecognizer类,使开发者更容易实现各种手势的识别。

UIGestureRecognizer类是继承自Nsobject的抽象类,它派生的6个主要子类分别诠释了不同的手势识别。

  • UITapGestureRecognizer – “轻击”手势。可以配置为“单击”和“连击”的识别。
  • UIPinchGestureRecognizer –“捏合”手势。该手势通常用于缩放视图或改变可视组件的大小。
  • UIPanGestureRecognizer – “平移”手势。识别拖拽或移动动作。
  • UISwipeGestureRecognizer – “轻扫”手势。当用户从屏幕上划过时识别为该手势。可以指定该动作的方向(上、下、左、右)。
  • UIRotationGestureRecognizer – “转动”手势。用户两指在屏幕上做相对环形运动。
  • UILongPressGestureRecognizer – “长按”手势。使用1指或多指触摸屏幕并保持一定时间。

这些手势识别器必需和视图通过addGestureRecognizer:方法联系在一起。识别器必需指定一个响应方法以便发生指定手势时进行调用。removeGestureRecognizer:方法可以将识别器从视图中移出,方法参数指定要移除的识别器.

识别器响应消息

iOS 4 的手势识别器在侦测到某个手势发生时,使用目标-动作模型去通知应用程序。当一个识别器被创建之后,只要有对应的手势发生,就会调用创建时指定的方法。

连续和不连续手势

手势分为“连续手势”和“不连续手势”两种。“不连续手势”只会导致调用响应方法一次。“轻击”(包括多击)仅仅会触发一次响应方法。而“轻扫”、“平移”、“旋转”、“捏合”则是连续手势,它们会连续不断地调用响应方法直到手势结束。

从手势中获取数据

每个手势响应方法都会被传入一个UIGestureRecognizer* sender对象,从中可以获取到和手势有关的信息。例如,对于“捏合”手势,可以通过这个参数获取缩放系数、捏合速度。对于“转动”手势,则可以获得转动的次数及速度。

识别轻击手势

轻击手势使用UITapGestureRecognizer类进行识别。在alloc和init时必需指定一个手势触发时调用的方法引用(即selector选择器)。使用numberOfTapsRequired属性可以定义轻击必需被连续操作的次数。如以下代码所示,当识别器侦测到连续轻击2次时,将触发tapDetected:方法。

-(void) tapGestureRecognizeTest

{

UITapGestureRecognizer *doubleTap=[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapDeteted:)];

doubleTap.numberOfTapsRequired=2;

[self.parentUiView addGestureRecognizer:doubleTap];

[doubleTap release];

}

-(IBAction)tapDeteted:(UIGestureRecognizer *)sender

{

NSLog(@"双击手势");

}

识别捏合手势

捏合手势使用UIPinchGestureRecognizer类识别。例如:

-(void) pinchGestureRecongnizeTest

{

UIPinchGestureRecognizer *pinshGesture=[[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(pinshDeteted:)];

[self.parentUiView addGestureRecognizer:pinshGesture];

[pinshGesture release];

}

-(IBAction)pinshDeteted:(UIGestureRecognizer *)sender

{

NSLog(@"此触摸手势为%@",@"捏合手势");

}

识别转动手势

转动手势使用UIRotationGestureRecognizer类。

UIRotationGestureRecognizer *rotationRecognizer =
      [[UIRotationGestureRecognizer alloc]
      initWithTarget:self
       action:@selector(rotationDetected:)]; 
[self.view addGestureRecognizer:rotationRecognizer]; 
[rotationRecognizer release]; 
 

识别平移手势

平移手势使用UIPanGestureRecognizer 类。平移手势是最基本的连续手势。例如手指在屏幕上随意乱划可以被识别为平移或拖拽操作:

UIRotationGestureRecognizer *panRecognizer =
       [[UIPanGestureRecognizer alloc]
      initWithTarget:self
       action:@selector(panDetected:)]; 
[self.view addGestureRecognizer:panRecognizer]; 
[panRecognizer release]; 

如果轻扫和平移都添加在同一个view中,那么很可能大部分轻扫手势都会被识别为平移。而且如果两种手势被添加到同一个view时,会产生一个警告。

识别轻扫手势

轻扫手势使用 UISwipeGestureRecognizer 类。所有的轻扫都将被识别,或者你可以指定只侦测方向为以下常量的轻扫:

  • UISwipeGestureRecognizerDirectionRight
  • UISwipeGestureRecognizerDirectionLeft
  • UISwipeGestureRecognizerDirectionUp
  • USwipeIGestureRecognizerDirectionDown

如果不指定direction属性,默认只侦测方向为右的轻扫。以下代码设置只侦测向上轻扫:

UISwipeGestureRecognizer *swipeRecognizer =
        [[UISwipeGestureRecognizer alloc]
       initWithTarget:self
        action:@selector(swipeDetected:)]; 
swipeRecognizer.direction = UISwipeGestureRecognizerDirectionUp; [self.view addGestureRecognizer:swipeRecognizer]; 
[swipeRecognizer release]; 
 

识别长按手势

长按手势使用 UILongPressGestureRecognizer 类。这个手势需要指定长按的时间,触摸的次数,点击的次数以及在触摸过程中是否允许移动。这些选项分别由minimumPressDuration, numberOfTouchesRequired, numberOfTapsRequired 和allowableMovement 属性指定。以下代码使识别器只侦测单指长按3秒以上的手势。allowableMovement未指定,默认是允许10个像素的移动:

UILongPressGestureRecognizer *longPressRecognizer =
       [[UILongPressGestureRecognizer alloc]
      initWithTarget:self
       action:@selector(longPressDetected:)]; longPressRecognizer.minimumPressDuration = 3; 
longPressRecognizer.numberOfTouchesRequired = 1; 
[self.view addGestureRecognizer:longPressRecognizer];
[longPressRecognizer release]; 

注:ios模拟器使用捏合手势时,按住option键。然后结合鼠标模拟。 触摸手势说明: (1)右键按住+移动鼠标向左=放大; (2)右键按住+移动鼠标向右=缩小; (3)右键按住+移动鼠标向上=前倾; (4)右键按住+移动鼠标向下=后倾

关于ios的手势识别(GestureRecognizers)讲解的更多相关文章

  1. IOS UITableView NSIndexPath属性讲解

    IOS UITableView NSIndexPath属性讲解   查看UITableView的帮助文档我们会注意到UITableView有两个Delegate分别为:dataSource和deleg ...

  2. IOS添加手势识别

    ios里面有手势识别,多点触控等功能,过去要实现手势识别很复杂,现在苹果为我们实现了,手势识别变得很简单 1.向视图添加手势识别器:(一般由controller完成,有时View也可以添加) 2.提供 ...

  3. iOS 解析手势识别(Gesture Recognizers)

    一.Gesture Recognizers Gesture Recognizers是在iOS3.2引入的,可以用来识别手势.简化定制视图事件处理的对象.Gesture Recognizers的基类为U ...

  4. iOS图形手势识别框架SGGestureRecognizer

    简介 苹果官方为我们提供了简单手势的识别器,但对于图形手势,例如五角星.三角形等的识别,就需要自己实现了.通过识别这些手势,可以去执行特定的操作,或是输入公式.释放魔法等,可以为App增光添彩. 下载 ...

  5. iOS七大手势识别

    也没有什么好说的,方法都差不多,只要记得当你想要同时实现两个或多个手势的话,要遵守<UIGestureRecognizerDelegate>协议,闲言休叙,直接上代码: #import & ...

  6. iOS基础 - 手势识别 与 手势说明

    一.使用手势识别的四个步骤 1> 实例化手势识别 - (id)initWithTarget:(id)target action:(SEL)action; 2> 设置手势识别属性 3> ...

  7. iOS Runloop的超级讲解

    这是目前看过的最好的一片中文讲解RunLoop的文章,推荐给大家看一下,原文链接:http://blog.ibireme.com/2015/05/18/runloop/ https://segment ...

  8. iOS 声明属性关键字讲解

    atomic: 原子操作(原子性是指事务的一个完整操作,操作成功就提交,反之就回滚. 原子操作就是指具有原子性的操作)在objective-c 属性设置里面 默认的就是atomic ,意思就是 set ...

  9. iOS移动开发CoreDate讲解

    ----欢迎------- 在移动端开发,数据持久化保存是基本要素,没钱在2014年之后退出了coredate,本持久化基于oc作为开发,方便程序人员操作.与SQL数据库,MySQL相比,优点颇多. ...

随机推荐

  1. iOS CAShapeLayer精讲

    前言 CAShapeLayer继承自CALayer,因此,可使用CALayer的所有属性.但是,CAShapeLayer需要和贝塞尔曲线配合使用才有意义. 关于UIBezierPath,请阅读文章:i ...

  2. 9 个让 JavaScript 调试更简单的 Console 命令

    一.显示信息的命令 <!DOCTYPE html> <html> <head> <title>常用console命令</title> < ...

  3. tomcat 6.0 压缩功能

    官方文档: http://tomcat.apache.org/tomcat-6.0-doc/config/http.html

  4. The maximum number of cell styles was exceeded. You can define up to 4000 styles

    POI操作Excel中,导出的数据不是很大时,则不会有问题,而数据很多或者比较多时, 就会报以下的错误,是由于cell styles太多create造成,故一般可以把cellstyle设置放到循环外面 ...

  5. Start-Process传递变量

    如果$b="aa,bb" Start-Process PowerShell.exe -Argumentlist "d:\w.ps1 $a $b $c" Star ...

  6. 手动配置Ubuntu Linux系列3-缺省网关和主机名

    上一篇讲到[原创]手动配置Ubuntu Linux的DHCP客户端,这里再说一下配置静态IP地址的方法.   仍然是编辑 interfaces文件.   $ sudo vi /etc/network/ ...

  7. unity3d 中加入�视频

    加入�音频 视频 using UnityEngine; using System.Collections; public class play_video : MonoBehaviour { publ ...

  8. ABAP 日期函数

    一 财务期间处理 T_CODE: OB29 **取 公司年度变式, 和 货币  SELECT SINGLE waers periv FROM t001        INTO (v_waers,v_p ...

  9. Android Settings 导入eclipse

    1.加载源码 Android Project from Existing Code 选择源码工程Settings: 2.加载所需要的jar包 (改下名字) out/target/common/obj/ ...

  10. android117 下拉列表