1

UITouchPhaseBeganとがありますがUITouchPhaseEnd、何UITouchPhaseですか?

4

1 に答える 1

2

これは、定数の typedef 列挙型です。UITouch クラス リファレンスを参照してください。

タッチフェーズ

指タッチのフェーズ。

typedef enum {
   UITouchPhaseBegan,
   UITouchPhaseMoved,
   UITouchPhaseStationary,
   UITouchPhaseEnded,
   UITouchPhaseCancelled,
} UITouchPhase;
于 2013-01-09T08:14:07.920 に答える