Conforms to NSObject
Declared in CCEventDispatcher.h

Overview

CCTouchEventDelegate protocol. Implement it in your node to receive any of touch events

Tasks

Instance Methods

ccTouchesBeganWithEvent:

called when the “touchesBegan” event is received. Return YES to avoid propagating the event to other delegates.

- (BOOL)ccTouchesBeganWithEvent:(NSEvent *)event

Declared In

CCEventDispatcher.h

ccTouchesCancelledWithEvent:

called when the “touchesCancelled” event is received. Return YES to avoid propagating the event to other delegates.

- (BOOL)ccTouchesCancelledWithEvent:(NSEvent *)event

Declared In

CCEventDispatcher.h

ccTouchesEndedWithEvent:

called when the “touchesEnded” event is received. Return YES to avoid propagating the event to other delegates.

- (BOOL)ccTouchesEndedWithEvent:(NSEvent *)event

Declared In

CCEventDispatcher.h

ccTouchesMovedWithEvent:

called when the “touchesMoved” event is received. Return YES to avoid propagating the event to other delegates.

- (BOOL)ccTouchesMovedWithEvent:(NSEvent *)event

Declared In

CCEventDispatcher.h