123456789101112131415 |
- //
- // youpaifmain.m
- // LiveChat
- //
- // Created by 张灿 on 2018/3/24.
- // Copyright © 2018年 DaTongIntelligent. 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]));
- }
- }
|