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