Files
LayaNative2.0/Conch/build/wkwebview/proj.ios/WKWebview/main.m
T
2020-11-11 16:17:13 +08:00

17 lines
329 B
Objective-C

//
// main.m
// WKWebview
//
// Created by LayaBox on 1/11/16.
// Copyright © 2016 LayaBox. 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]));
}
}