19 lines
437 B
Objective-C
19 lines
437 B
Objective-C
|
//
|
||
|
// main.m
|
||
|
// FinDemo
|
||
|
//
|
||
|
// Created by 胡健辉 on 2023/5/29.
|
||
|
//
|
||
|
|
||
|
#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);
|
||
|
}
|