mirror of
https://gitee.com/farsunset/cim.git
synced 2025-06-17 07:35:25 +08:00
19 lines
434 B
Objective-C
19 lines
434 B
Objective-C
//
|
|
// main.m
|
|
// CIMKit
|
|
//
|
|
// Created by Chentao on 2022/8/31.
|
|
//
|
|
|
|
#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);
|
|
}
|