Files
youle_app_ios/msext/main.m
2023-12-27 20:38:37 +08:00

17 lines
323 B
Objective-C
Executable File

//
// main.m
// msext
//
// Created by chao on 15/7/23.
// Copyright (c) 2015年 chao. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}