20 lines
497 B
Objective-C
20 lines
497 B
Objective-C
//
|
|
// main.m
|
|
// Example
|
|
//
|
|
// Created by pengfei.zhou on 2019/12/5.
|
|
// Copyright © 2019 pengfei.zhou. All rights reserved.
|
|
//
|
|
|
|
#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);
|
|
}
|