美文网首页
iOS wkwebview 自适应网页大小

iOS wkwebview 自适应网页大小

作者: 程序猿在公元前 | 来源:发表于2021-03-15 17:54 被阅读0次
NSString *jScript = @"var meta = document.createElement('meta'); meta.setAttribute('name', 'viewport'); meta.setAttribute('content', 'width=device-width'); document.getElementsByTagName('head')[0].appendChild(meta);";
WKUserScript *wkUScript = [[WKUserScript alloc] initWithSource:jScript injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];
WKUserContentController *wkUController = [[WKUserContentController alloc] init];
    
WKWebViewConfiguration *wkWebConfig = [[WKWebViewConfiguration alloc] init];
wkWebConfig.userContentController = wkUController;
    
_webView = [[WKWebView alloc] initWithFrame:CGRectZero configuration:wkWebConfig];

相关文章

网友评论

      本文标题:iOS wkwebview 自适应网页大小

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