Xcode7中关于下载网络图片报错的问题

来源:互联网 发布:淘宝卖家咨询客服电话 编辑:程序博客网 时间:2024/04/27 21:48

Xcode7中,在下载网络图片时,会产生如下错误:

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.

解决这个问题,只需要修改Info.plist文件,在里面添加如下配置即可。


<key>NSAppTransportSecurity</key><dict><key>NSAllowsArbitraryLoads</key><true/></dict>

原因是在iOS9 beta1中,苹果将原http协议改成了https协议,使用 TLS1.2 SSL加密请求数据


0 0