touchesMoved 获取快速滑动的所有坐标
我想获取touchesMoved中的所有坐标。我面临的问题是,当您在我的视图上快速滑动时,touchesMoved 会丢失一些滑动坐标。
我也提到过这个问题。 touchesMoved:withEvent
有什么解决方案吗?
I want to get all the coordinates in touchesMoved. The problem I am facing is when you swipe fast on my view than touchesMoved is missing few coordinates from the swipe.
I have referred this question too. touchesMoved:withEvent
Any solution for this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为不可能获得丢失的坐标。
因为调用 TouchMoved 的间隔不够频繁,无法捕获所有快速移动。
也许您可以在您可以捕获的坐标之间绘制一条路径。
这将为您提供缺失点的粗略近似值。
I don't think it is possible to get missing coordinates.
Because calling interval of touchesMoved is not frequent enough to catch all fast movements.
Maybe you can draw a path between coordinates you can catch.
That gives you a rough approximation of missing points.