update target file

This commit is contained in:
pengfei.zhou
2020-03-31 19:20:22 +08:00
committed by osborn
parent 20524eede4
commit feec2cf0ad
18 changed files with 21 additions and 27 deletions

View File

@@ -0,0 +1,19 @@
//
// 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);
}