mirror of
https://github.com/tiennm99/fbird.git
synced 2026-06-13 08:11:04 +00:00
12 lines
244 B
Objective-C
12 lines
244 B
Objective-C
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
|
int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
|
|
[pool release];
|
|
return retVal;
|
|
}
|