其对应的方法:
- initWithTarget:action:
- addTarget:action:
- removeTarget:action:
- locationInView:
- locationOfTouch:inView:
- numberOfTouches
属性:
delaysTouchesBegin
这里有一个方法,非常重要,当你需要使用双击手势时,单击手势也会出现.这个时候就要使用下面的方法:
- requireGestureRecognizerToFail:(eg: 单击需要双击失败)
- translationinView:
- setTranslation:inView:
- velocityView: (速度以 CGpoint 方式返回,可以分解为 x 和 y 两个方向的速度 )
>
这个手势与平移手势有些不同,它是以屏幕边缘的部分才能产生效果,一般使用时需要特殊处理,否则就会与平移手势产生冲突.因为它继承 UIPanGestureRecognizer
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/www_nyp_boke/article/details/47124539