rename dir

This commit is contained in:
pengfei.zhou
2019-12-21 21:56:43 +08:00
parent 1d40c1e1e0
commit 6b68d8472c
67 changed files with 0 additions and 32 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);
}