手势(Gesture Recognizer)
手势内容:
一次性手势:tap swipe
连续性手势:longPress pinch rotation pan
使用手势的基本步骤:
step1:创建手势,设定好手势发生时,给哪个target发消息
step2:设置手势的属性
step3:将手势与指定的视图绑在一起
1 什么是手势
用户在view上的一些触屏操作,诸如 点 滑动 捏合 旋转 长按 等
2 手势的分类
a。一次性手势
触屏动作发生后,方法只会执行一次,如 点击一下屏幕 解锁动作
b。连续性手势
触屏动作发生后,方法会连续响应多次,如 长按 捏合 移动 旋转
3 手势的本质
系统将用户在屏幕上的物理性动作,归纳出一些数据,并存储成一个对象,所以在程序中对手势的处理,就成为了获取手势对象数据,分析数据,根据数据产生响应的过程
4 如何使用手势
step1:创建手势对象
step2:设置与手势对象相关的属性
step3:将手势对象与需要检测的视图关联在一起
5 手势的具体分类
所有手势的父类 : UIGestureRecognizer
6种手势
UITapGestureRecognizer 点击手势
UISwipeGestureRecognizer 轻扫手势(如解锁动作)
UIPinchGestureRecognizer 捏合手势
UIPanGestureRecognizer 拖动手势
UIRotationGestureRecognizer 旋转手势
UILongPressGestureRecognizer 长按手势
4.6UITapGestureRecognizer(一次性手势:点击手势)
4.7 UISwipeGestureRecognizer(一次性手势:轻扫手势,强调的是方向)
【
4.8 UILongPressGestureRecognizer(连续性手势,长按手势)
4.9 UIPinchGestureRecognizer(连续性手势,捏合手势)
属性:velocity scale
【Demo7_Pinch_Gesture】
4.10 UIRotationGestureRecognizer(连续性手势,旋转)
属性:rotation(旋转的弧度)
4.11 UIPanGestureRecognizer(连续性手势,拖动手势)
方法:locationInView
当前拖动的点所在的某坐标系下的位置
translationInView
拖动的新的位置相对于拖动的起始点的位置,横向 纵向 走了多少距离
网友评论