标签:
项目运行在ios9上需要在info.plist文件中配置加入如下信息,
App Transport Security Settings
Allow Arbitrary Loads = YES
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
// 注册代理 否则点击菜单没有交互,目前支持9.0+
[self.yourSite setValue:@"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/7.0; .NET4.0E; .NET4.0C)" forKey:@"applicationNameForUserAgent"];
如果在ios9上也可以这么设置,不过只能用再ios 9以上的系统当中
// 注册代理 否则点击菜单没有交互,目前支持9.0+
if ([[[UIDevice currentDevice] systemVersion] isEqual: @"9.0"]) { self.yourSite.customUserAgent = @"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/7.0; .NET4.0E; .NET4.0C)"; }
iOS WKWebView ios9中不显示 与 设置UserAgent(用户代理)
标签:
原文地址:http://www.cnblogs.com/MrTao/p/5026321.html