1
我是一名iPhone初學者,我想知道主功能需要多少個參數。主要功能需要多少個參數?
我是一名iPhone初學者,我想知道主功能需要多少個參數。主要功能需要多少個參數?
的main()函數是一個標準C的main()。它有兩個參數:
int main(int argc, char *argv[]) {}
以撒指出,通常你會使用的main.m通過的XCode爲您提供:
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}
你一般不會碰主要方法。
通常你開始在你的應用程序委託輸入您的代碼,具體如下:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
雅最好是上面... – himCream 2012-08-28 08:37:54