2021-09-06 18:47:38 +08:00
|
|
|
//
|
|
|
|
// main.m
|
|
|
|
// xplan-ios
|
|
|
|
//
|
2021-11-01 14:25:16 +08:00
|
|
|
// Created by zu on 2021/8/31.
|
2021-09-06 18:47:38 +08:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
|
|
|
|
int main(int argc, char * argv[]) {
|
|
|
|
NSString * appDelegateClassName;
|
|
|
|
@autoreleasepool {
|
|
|
|
// Setup code that might create autoreleased objects goes here.
|
|
|
|
appDelegateClassName = NSStringFromClass([AppDelegate class]);
|
|
|
|
}
|
|
|
|
return UIApplicationMain(argc, argv, nil, appDelegateClassName);
|
|
|
|
}
|