in the main.m file:
int main(int argc, char *argv[]) {
NSAutoreleasePool *pool = [NSAutoreleasePool new];
UIApplicationMain(argc, argv, nil, @"AppController");
[pool release];
return 0;
}
I just add the cocos2d sample test code to my project, and there're so many AppController delegate in those files.
So how can I know which "AppController" of delegate is used?