可能性の重複:
Is there any reason to modify the main.m file in your iOS applications?作業
私はiphoneのアプリケーション開発の新しいですし、私たちは積極的に使用していない理由を知りたいですiPhoneのプログラミングのmain.mファイル。
- (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;
}
正確な重複 - [iPhoneでのMain.mファイルの使用](http://stackoverflow.com/questions/4252952/main-m-file-use-in-iphone)[メインを変更する理由はありますか.mファイルをiOSアプリケーションに含めるには?](http://stackoverflow.com/questions/7998342/is-there-any-reason-to-modify-the-main-m-file-in-your-ios-applications) – beryllium