
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];
The glView object can be located and set in your AppDelegate implementation file (AppDelegate.m).
We all know that multi-touch is way cooler then single touch!
So, before you do anything else, go set this property in your current xCode project.


