是否可以通过UIPanGestureRecognizer获取UITouch对象?我该怎么办?
最佳答案
作为Apple documentation says,,您没有属性可以在UIGestureRecognizer
对象中获得触摸。
但是您可以继承UIGestureRecognizer
类,以便覆盖touchesBegan:withEvent:
,touchesMoved:withEvent:
,touchesEnded:withEvent:
等,从而检索UITouch
对象。
如果有用的话,还可以看看locationOfTouch:inView:
。
干杯!
关于ios - 从UIPanGestureRecognizer获取UITouch,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27672095/