10 lines
146 B
Objective-C
Executable File
10 lines
146 B
Objective-C
Executable File
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
int retVal = UIApplicationMain(argc, argv, nil, nil);
|
|
|
|
return retVal;
|
|
}
|