Reputation: 689
There is UITouchPhaseBegan
and UITouchPhaseEnd
, but what is UITouchPhase
?
Upvotes: 1
Views: 772
Reputation: 12782
It is a typedef enum of constants. See the UITouch Class Reference
Touch Phase
The phase of a finger touch.
typedef enum {
UITouchPhaseBegan,
UITouchPhaseMoved,
UITouchPhaseStationary,
UITouchPhaseEnded,
UITouchPhaseCancelled,
} UITouchPhase;
Upvotes: 2