Possible Duplicate:
Is there any reason to modify the main.m file in your iOS applications?
I am new in the iphone applications development and I want to know why we don't actively use the main.m file in the iphone programming. I saw in the many books the following usage:
- (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;
}