Xcode升级到了7.0之后,原先没有异常的程序也出现了如下报错:
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 中,苹果将原http协议改成了https协议,使用 TLS1.2 SSL加密请求数据。
解决办法:
在info.plist中添加
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
在iOS9中,苹果将http协议改为了https协议,导致部分程序出现AppTransportSecurity报错。本文介绍了如何通过在info.plist文件中添加NSAppTransportSecurity配置来解决此问题。

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



