我想检测用户何时使用一根手指在UIView上进行圆周运动
任何帮助将不胜感激
答案 0 :(得分:1)
使用UIView并实现
– touchesBegan:withEvent:
– touchesMoved:withEvent:
– touchesEnded:withEvent:
– touchesCancelled:withEvent:
触摸移动后,您将获得新的触摸点,您可以看到触摸点是否在圆弧上。
答案 1 :(得分:0)
我知道用一堆链接回答是不好的做法。但重新发明轮子也是如此。
看看:
Recognising a circle gesture to drop an annotation, how to detect circle?
How to detect a circle motion with UIGestureRecognizer
How to detect circular gesture via Gesture Recognizer?
所有相关问题都包括已接受的答案。