项目运行在ios9上需要在info.plist文件中配置加入如下信息,
App Transport Security Settings
Allow Arbitrary Loads = YES
<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>
设置 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)"; }
时间: 2024-11-06 07:24:03