美文网首页
WKWebView 解决跨域问题

WKWebView 解决跨域问题

作者: Lemon_5993 | 来源:发表于2019-05-26 18:43 被阅读0次

WKWebView 解决跨域问题

WKUserContentController*userContentController = [[WKUserContentControlleralloc] init]; [selfregisterAllJavascriptWithUserContent:userContentController];WKWebViewConfiguration*config = [[WKWebViewConfigurationalloc] init]; config.userContentController = userContentController; config.preferences.javaScriptEnabled =YES; config.preferences.javaScriptCanOpenWindowsAutomatically =YES; config.suppressesIncrementalRendering =YES;// 是否支持记忆读取[config.preferences setValue:@YES forKey:@"allowFileAccessFromFileURLs"];if(@available(iOS10.0, *)) { [config setValue:@YES forKey:@"allowUniversalAccessFromFileURLs"]; }

相关文章

网友评论

      本文标题:WKWebView 解决跨域问题

      本文链接:https://www.haomeiwen.com/subject/wyokdqtx.html