AceSL
2020-11-20 7b7effa083ee9d8bcbd61fe9d4bb4e9b0f3c2268
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  main.m
//  MyCircleView
//
//  Created by 张威 on 2020/11/20.
//  Copyright © 2020 JSPY. 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);
}