问题描述
- UIRotationGestureRecognizer的问题
-
我能不能获取UIRotationGestureRecognizer
两个手指点的中间坐标?还有每个手指的坐标,能获取吗?怎么实现,谢谢。
解决方案
都可以实现
UIRotationGestureRecognizer
说明里有velocity
和rotation
的属性。
专门用于旋转。
可以从UIGestureRecognizer
中用这些方法
Getting the Touches and Location of a Gesture
– locationInView:
– locationOfTouch:inView:
– numberOfTouches
获得触摸屏的位置,就能算出你先要的坐标了。
时间: 2024-10-30 14:16:49