這是用於iPhone的Xcode中的Objective-C。如何在main.m中調用靜態布爾方法
我在main.m文件的方法:
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
//I want to call the method here//
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}
static BOOL do_it_all() {
//code here//
}
如何調用從main.m文件的do_it_all方法?
我確實有循環依賴。這些信息非常有幫助。謝謝。 在main.m中的工作似乎有點不同於標準的.h/.m文件。 – AaronG 2010-03-20 12:40:53