IOS Cordova嵌套Cocos Creator的坑
最近在看如何把H5游戏嵌套发布在app上,于是用Cordova作为工具。 然而之前Cordova在IOS上是用UIWebview,但是IOS新版本上强制要用wkwebview。还好新版Cordova也支持了,但是遇到了一个坑,加载不了: 原因: wkwebview对于文件的访问,也是认为是跨域的一种 解决办法: 一定要设置[configuration.preferences setValue:@YES forKey:@"allowFileAccessFromFileURLs"]; // 初始化webview - (void)viewDidLoad { [super viewDidLoad]; [self installStartTime]; WKWebViewConfiguration *config = [[WKWebViewConfiguration alloc] init]; self.webview = [[JSBWebView alloc] initWithFrame:self.view.bounds configuration:config]; self.webview.navigationDelegate = self; self.webview.UIDelegate = self; } - (instancetype)initWithFrame:(CGRect