关于使用UIPanGestureRecognizer手势touchesBegan不调用的问题

关于使用UIPanGestureRecognizer手势touchesBegan不调用的问题最近使用UIPanGestureRecognizer手势时遇到一个问题,就是想获取起始的触摸点,但UIPanGestureRecognizer手势需要滑动一点距离时,才会触发,那样获取的起始点不太准确。然后就想到了-(void)touchesBegan:(NSSet*)toucheswithEvent:(UIEvent*)event这个方法,但这个方法还是有个缺点,就是开始触摸时,需要稍微停

最近使用UIPanGestureRecognizer手势时遇到一个问题,就是想获取起始的触摸点,但UIPanGestureRecognizer手势需要滑动一点距离时,才会触发,那样获取的起始点不太准确。然后就想到了

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

这个方法,但这个方法还是有个缺点,就是开始触摸时,需要稍微停顿一下才会触发,如果你轻扫的话,就不会调用,显然效果不太理想。

那我们可以继承UIPanGestureRecognizer,然后重写UIPanGestureRecognizer的

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event 

方法,然后调用父类的touchesBegan方法就可以了,代码片段如下:

#import "ImmediatePanGestureRecognizer.h"
#import <UIKit/UIGestureRecognizerSubclass.h>

@implementation ImmediatePanGestureRecognizer

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    [super touchesBegan:touches withEvent:event];
    self.state = UIGestureRecognizerStateBegan;
}

@end

你也可以从上面的重写方法中,直接得到point

 UITouch *touch=[touches anyObject]; CGPoint startPoint =[touch locationInView:touch.view];

参考自:
http://stackoverflow.com/questions/17621402/uipangesturerecognizer-do-something-immediately-when-touched

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/39298.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注