Files
youle_app_ios/msext/main.m
benjaminchao b106a628a5 Initial Commit
2015-07-23 09:32:59 +08:00

17 lines
323 B
Objective-C

//
// 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]));
}
}