1、Touch事件

//系统自动调用

//一个UITouch代表一根手指 按住option变成两根手指

//虽然是两个手指,但只执行一次触摸事件

- (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 {} 取消触摸手势

//获取任意手指

UITouch * touch = [touches anyObject];

//手指触摸的View

NSLog(@"touch.view:%@",touch.view);

//点击次数

NSLog(@"点击次数:%ld",touch.tapCount);

//当前手指的位置

CGPoint currentPonit = [touch locationInView:touch.view];

//上一次手指所处的位置

CGPoint previousPonit = [touch previousLocationInView:touch.view];

2、事件分发

事件产生和传递的过程:

当发生触摸事件的时候,先传递给UIApplication,以队列结构接收事件。传递给主窗口,主窗口传递给控制器的UIView,遍历UIView的子视图,寻找最合适的UIView来接收。

响应者链:

该类的上一级如果是UIView,子视图处理事件,如果处理不了,找他的父视图。

该类的上一级如果是UIViewController,则是由所属的控制器来处理。

//返回最合适的UIView

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {}

//判断当前的点在不在View上

- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {

return YES;

}

3、UIImageView点击事件

self.imageView.userInteractionEnabled = NO;

//无法响应事件的3种情况:

//1、当userInteractionEnabled未开启

//2、当hidden属性为YES

//3、当alpha属性为0时

//将以YellowView为坐标系的点,转化为以button为坐标系的点 self = yellowView

CGPoint buttonPoint = [self convertPoint:point toView:self.button];

这个函数的用处是判断当前的点击或者触摸事件的点是否在当前的view中。

它被hitTest:withEvent:调用,

- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event;   // default returns YES if point is in bounds

4、手机摇一摇

//事件的种类

- (void)motionBegan:(UIEventSubtype)motion withEvent:(nullable UIEvent *)event {

if (motion == UIEventSubtypeMotionShake) {

NSLog(@"摇一摇");

}

}

5、**Gesture手势

UIGestureRecognizerState:

开始: UIGestureRecognizerStateBegan

改变: UIGestureRecognizerStateChanged

结束: UIGestureRecognizerStateEnded

取消: UIGestureRecognizerStateCancelled

失败: UIGestureRecognizerStateFailed,

//同时使用两个手势 捏合 旋转

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {

return YES;

}

(1)点击手势 Tap

UITapGestureRecognizer * tap1 = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapAction1:)];

//点击一次便触发

tap1.numberOfTapsRequired = 1;

[self.imageView addGestureRecognizer:tap1];

UITapGestureRecognizer * tap2 = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapAction2:)];

//双击一次便触发

tap2.numberOfTapsRequired = 2;

[self.imageView addGestureRecognizer:tap2];

//如果tap2成功执行,让tap1失败

[tap1 requireGestureRecognizerToFail:tap2];

(2)长按手势 LongPress
    UILongPressGestureRecognizer * longGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longAction:)];

[self.imageView addGestureRecognizer:longGesture];

(3)轻扫手势  Swipe

UISwipeGestureRecognizer * swipeGesture = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeAction:)];

//设置轻扫方向

swipeGesture.direction = UISwipeGestureRecognizerDirectionLeft;

[self.imageView addGestureRecognizer:swipeGesture];

(4)捏合事件 Pinch

UIPinchGestureRecognizer * pinchGesture = [[UIPinchGestureRecognizer alloc] initWithTarget:self action:@selector(pinchAction:)];

pinchGesture.delegate = self;

[self.imageView addGestureRecognizer:pinchGesture];

self.pin = pinchGesture;

//对应事件

- (void)pinchAction:(UIPinchGestureRecognizer *)pin {

self.imageView.transform = CGAffineTransformScale(self.imageView.transform, pin.scale, pin.scale);

//复位

pin.scale = 1;

}

(5)旋转事件 Rotation

UIRotationGestureRecognizer * rotationGesture = [[UIRotationGestureRecognizer alloc] initWithTarget:self action:@selector(rotationAction:)];

rotationGesture.delegate = self;

[self.imageView addGestureRecognizer:rotationGesture];

//对应事件

- (void)rotationAction:(UIRotationGestureRecognizer *)rotation {

self.imageView.transform = CGAffineTransformRotate(self.imageView.transform, rotation.rotation);

//复位

rotation.rotation = 0;

}

(6)拖动手势 Pan

UIPanGestureRecognizer * panGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panAction:)];

[self.imageView addGestureRecognizer:panGesture];

//对应事件

- (void)panAction:(UIPanGestureRecognizer *)pan {

//获取拖动的偏移量

CGPoint ponit = [pan translationInView:self.view];

self.imageView.center = CGPointMake(self.imageView.center.x + ponit.x, self.imageView.center.y + ponit.y);

//复位

[pan setTranslation:CGPointZero inView:self.imageView];

}

iOS 手势大全的更多相关文章

  1. 墙裂推荐 iOS 资源大全

    这是个精心编排的列表,它包含了优秀的 iOS 框架.库.教程.XCode 插件.组件等等. 这个列表分为以下几个部分:框架( Frameworks ).组件( Components ).测试( Tes ...

  2. iOS 资源大全整理

    这是个精心编排的列表,它包含了优秀的 iOS 框架.库.教程.XCode 插件.组件等等. 这个列表分为以下几个部分:框架( Frameworks ).组件( Components ).测试( Tes ...

  3. ios手势

    iOS 手势操作:拖动.捏合.旋转.点按.长按.轻扫.自定义 大 中 小   1.UIGestureRecognizer 介绍 手势识别在 iOS 中非常重要,他极大地提高了移动设备的使用便捷性. i ...

  4. iOS手势学习UIGestureRecognizer & cocos2d 手势推荐

    iOS手势学习UIGestureRecognizer & cocos2d 手势推荐 手势识别类型: UILongPressGestureRecognizer  // 长按UIPanGestur ...

  5. iOS手势处理

    iOS手势处理 iOS手势有着如下几种: UITapGestureRecognizer UIPinchGestureRecognizer UIRotationGestureRecognizer UIS ...

  6. iOS github大全 & iOS7的学习blog

    iOS github大全 :有600多个iOS各方面的开源库,并分类了 一天天学习iOS7 :每天学习一点iOS7的新特性

  7. iOS 手势识别器概述

    手势识别器 iOS 手势识别器(UIGestureRecognizer) 点击手势(UITapGestureRecognizer) 滑动手势(UISwipeGestureRecognizer) 旋转手 ...

  8. swift 实现iOS手势密码、指纹密码、faceID

    本博客包含了如何实现iOS手势密码.指纹密码.faceID全步骤,包括了完整的代码. 先附上demo地址https://github.com/Liuyubao/LYBTouchID,支持swift3. ...

  9. iOS手势解锁、指纹解锁--Swift代码

    一.手势密码 1. 1.1.用UIButton组成手势的节点. 1.2.当手指接触屏幕时,调用重写的 touchesBegan:withEvent方法(在touchesBegan里调用setNeeds ...

随机推荐

  1. 思科ASA系列防火墙配置手册

    使用console连接线登录方法 1.使用cisco的console连接线,连接设备的console口和计算机com口(笔记本用USB转COM口连接线)2.使用超级终端或secureCRT软件连接设备 ...

  2. Python装饰器(decorator)

    了解装饰器,要先了解闭包. 1,闭包(closure) 闭包是Python所支持的一种特性,它让在非global scope定义的函数可以引用其外围空间中的变量,这些外围空间中被引用的变量叫做这个函数 ...

  3. AJAX制作JSON格式的实时更新数据的方法

    之前有写过这样的文章,但是出现了几个问题,第一,如果每秒都像数据库发送请求势必会造成服务器的压力过大,第二,如果使用JS的话,是不可以取得系统时间的,因为JS运行在客户端,所以只能取得客户端时间, 如 ...

  4. css3 动画demo

    1)http://www.yyyweb.com/demo/css-cokecan/inner.html 2)页面切换效果demo http://www.yyyweb.com/demo/page-tra ...

  5. 求C#开发大神指点职业规划或者开发路数(以后怎么走),谢谢

    背景:作为一名Asp.net Web类的开发人员,工作时间有点长,5年不到,属于是天赋不太强,但是比较努力型的人,开发过程中那事情基本上都会,各种前后端框架也会使用.目前在研究分布式缓存应用 Memc ...

  6. Xen入门系列一【使用Xen4CentOS 在 Centos 6 上安装 Xen】

    最近在学习Hadoop,在Win7下用VMware搭了三台虚拟机好不容易装好了Hadoop结果跑个两个单词的wordcount就跑了十分钟,郁闷啊,于是开始寻找效能更好的虚拟化解决方案,然后选定了Xe ...

  7. BeanFactory和ApplicationContext的作用和区别

    BeanFactory和ApplicationContext的作用和区别 作用: 1. BeanFactory负责读取bean配置文档,管理bean的加载,实例化,维护bean之间的依赖关系,负责be ...

  8. JS:公历、农历互转

    先申明这段代码不是我写的,纯粹只是觉的比较好用,所以记录下来以后继续使用,也同样分享给大家,大家有更好的可以推荐给我,谢谢! function CalConv(M, dateStr) { if (da ...

  9. reactor设计模式

    reactor介绍 reactor的工作模式就像它的名字一样,是一种反射模式,当事件发生时,根据发生的事件调用注册的处理器. Reactor的优点和应用 Reactor最常用于非阻塞的socket 传 ...

  10. javascript数据缓存

    if(!self.hotCityPrice[city]) { $.ajax({ type: 'GET', url: self.hotCityUrl, data: {cityCode: city, t: ...