ios – 如何在UIPanGestureRecognizer方法中获取当前触摸点和上一个触摸点?

前端之家收集整理的这篇文章主要介绍了ios – 如何在UIPanGestureRecognizer方法中获取当前触摸点和上一个触摸点?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是iOS新手,我在我的项目中使用UIPanGestureRecognizer.在我拖动视图时,我需要获取当前触摸点和上一个触摸点.我很难得到这两点.

如果我使用touchesBegan方法而不是使用UIPanGestureRecognizer,我可以通过以下代码得到这两点:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    CGPoint touchPoint = [[touches anyObject] locationInView:self];
    CGPoint prevIoUs=[[touches anyObject]prevIoUsLocationInView:self];
}

我需要在UIPanGestureRecognizer事件触发方法中获得这两点.我怎样才能做到这一点?请指导我.

解决方法

你可以用这个:
CGPoint currentlocation = [recognizer locationInView:self.view];

通过设置当前位置(如果未找到)并每次添加当前位置来存储先前位置.

prevIoUsLocation = [recognizer locationInView:self.view];
原文链接:https://www.f2er.com/iOS/334971.html

猜你在找的iOS相关文章