3

可以得到 UIRotationGestureRecognizer 的两个手指的中点坐标吗?或者每个手指的位置?谢谢你。

4

2 回答 2

4

你可以得到任何一个。

UIRotationGestureRecognizer显示属性的文档velocityrotation.

这是特定于旋转的。

但是您可以使用 UIGestureRecognizer 中的这些方法...

Getting the Touches and Location of a Gesture
– locationInView:
– locationOfTouch:inView:
– numberOfTouches

获得触摸和位置。

从这些你可以很容易地计算出中点。

于 2013-01-03T00:51:08.400 回答
1

UIRotationGestureRecognizerextendsUIGestureRecognizer有两种方法:numberOfToucheslocationOfTouch:inView:. 使用这些来获取每个手指的位置。从那里你可以计算一个中心。

于 2013-01-03T00:50:44.863 回答