项目介绍:
手势识别器(Gesture Recognizer)用于识别触摸序列并触发响应事件。当手势识别器识别到一个手势或手势发生变化时,会触发响应事件。UIGestureRecognizer类作为抽象类,不能直接使用。只能使用UIGestureRecognizer的子类识别手势,每一个子类识别一个特定的手势。
这个demo使用了以下七种手势:
-
UITapGestureRecognizer
-
UISwipeGestureRecognizer
-
UIPanGestureRecognizer
-
UIPinchGestureRecognizer
-
UIRotationGestureRecognizer
-
UILongPressGestureRecognizer
-
UIScreenEdgePanGestureRecognizer
详细介绍查看这篇文章: https://github.com/pro648/tips/wiki/手势控制:点击、滑动、平移、捏合、旋转、长按、轻扫
源码地址:https://github.com/pro648/BasicDemos-iOS/tree/master/GestureRecognizer