mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-06 22:29:44 +08:00
11 lines
188 B
Objective-C
11 lines
188 B
Objective-C
|
|
#import <UIKit/UIKit.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
@autoreleasepool {
|
|
int retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");
|
|
return retVal;
|
|
}
|
|
}
|