7 lines
169 B
Objective-C
7 lines
169 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, @"Application", @"AppDelegate");
|
|
}
|
|
}
|