作者:sunshinena | 来源:互联网 | 2023-07-20 14:32
项目运行在ios9上需要在info.plist文件中配置加入如下信息,AppTransportSecuritySettingsAllowArbitraryLoadsYESNSApp
项目运行在ios9上需要在info.plist文件中配置加入如下信息,
App Transport Security Settings
Allow Arbitrary Loads = YES
NSAppTransportSecurity
NSAllowsArbitraryLoads
<true/>
设置 UserAgent(用户代理)
// 注册代理 否则点击菜单没有交互,目前支持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(用户代理)