美文网首页
WKWebview加载网页不适配问题

WKWebview加载网页不适配问题

作者: 乔布斯瞧不起 | 来源:发表于2021-03-19 16:08 被阅读0次

    只需给WKWebview添加User-Agent即可解决适配问题,废话不多说,直接桑代码:

    
    NSString *userAgent = [self.webView valueForKey:@"applicationNameForUserAgent"];
    NSString *newUserAgent = [NSString stringWithFormat:@"%@%@",userAgent,@"Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148"];
    [self.webView setValue:newUserAgent forKey:@"applicationNameForUserAgent"];
    

    相关文章

      网友评论

          本文标题:WKWebview加载网页不适配问题

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