Possible Duplicate:
Is there any reason to modify the main.m file in your iOS applications?
I am new i the iphone application i want to know that why we dont use the main.m file in the iphone programing. I saw in the many books they use the
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:
int main(int argc, char *argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}