我在哪里可以获得相位UITouchPhaseStationary的触摸事件?

yeh*_*nan 5 iphone

在这些方法中,我得到了相应的阶段:
touchesBegan:withEvent:UITouchPhaseBegan,
touchesMoved:withEvent:UITouchPhaseMoved,
touchesEnded:withEvent:UITouchPhaseEnded,
touchesCancelled:withEvent:UITouchPhaseCancelled.

在这个阶段我可以在哪里获得触摸事件:UITouchPhaseStationary

ken*_*ytm 3

您可以假设两个事件之间的触摸Moved是静止的。

UITouchPhaseStationary由于多点触摸而存在。如果一个手指移动而另一个手指不移动,Moved仍然会触发事件,但静止触摸将处于阶段UITouchPhaseStationary。)