可以得到 UIRotationGestureRecognizer 的两个手指的中点坐标吗?或者每个手指的位置?谢谢你。
问问题
722 次
2 回答
4
你可以得到任何一个。
UIRotationGestureRecognizer
显示属性的文档velocity
和rotation
.
这是特定于旋转的。
但是您可以使用 UIGestureRecognizer 中的这些方法...
Getting the Touches and Location of a Gesture
– locationInView:
– locationOfTouch:inView:
– numberOfTouches
获得触摸和位置。
从这些你可以很容易地计算出中点。
于 2013-01-03T00:51:08.400 回答
1
UIRotationGestureRecognizer
extendsUIGestureRecognizer
有两种方法:numberOfTouches
和locationOfTouch:inView:
. 使用这些来获取每个手指的位置。从那里你可以计算一个中心。
于 2013-01-03T00:50:44.863 回答