Could anyone show me how to enable multi touch in cocos2d application please? I am new to this. Really appreciate any help.
I tested on Cocos2D 1.0rc2, and in that version you must put the setMultipleTouchEnabled command in the OpenGL view (in the appdelegate class):
[glView setMultipleTouchEnabled:YES];
and in your CCLayer init function:
self.isTouchEnabled = YES;