Multitouch In Cocos2D

In order to enable multiTouch in a cocos2d-iphone project, the glView object needs it’s setMultipleTouchEnabled property to be YES.

YES is a reserved word and a positive BOOL value in Objective-C syntax.

[glView setMultipleTouchEnabled:YES];

Read full article here >>