UIGestureRecognizer基类是一个抽象类,一般主要使用它的子类
•UITapGestureRecognizer
•UIPinchGestureRecognizer
•UIRotationGestureRecognizer
•UISwipeGestureRecognizer
•UIPanGestureRecognizer
•UILongPressGestureRecognizer
从名字上我们就能知道,Tap(点击)、Pinch(捏合)、Rotation(旋转)、Swipe(滑动,快速移动,是用于监测滑动的方向的)、Pan (拖移,慢速移动,是用于监测偏移的量的)以及 LongPress(长按)。
举个例子 ,看看给UILabel来添加一个点击事件
执行效果:其余的都一样我在这里就不用一一列举啦!
网友评论