#import <UIKit/UIKit.h>
#import "AppDelegate.h"
Go to the source code of this file.
◆ main()
int main |
( |
int |
argc, |
|
|
char * |
argv[] |
|
) |
| |
Definition at line 8 of file main.m.
8 {
9 NSString* appDelegateClassName;
10 @autoreleasepool {
11
12 appDelegateClassName = NSStringFromClass([
AppDelegate class]);
13 }
14 return UIApplicationMain(argc,
argv, nil, appDelegateClassName);
15}