| 123456789101112131415161718 |
- //
- // main.m
- // MiMoLive
- //
- // Created by SuperC on 2023/10/7.
- //
- #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);
- }
|