App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app‘s Info.plist file.
在iOS9 beta中,苹果将原http协议改成了https协议,使用 TLS1.2 SSL加密请求数据。
解决方法:
在info.plist 加入key
<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict>
本文介绍了iOS9中App Transport Security(ATS)的功能变更,苹果将默认的HTTP协议更改为HTTPS,并采用TLS1.2 SSL加密请求数据。为解决由此带来的加载资源问题,文章提供了在Info.plist文件中加入特定配置项的方法。
761

被折叠的 条评论
为什么被折叠?



