解决iOS9下blocked cleartext HTTP
Yourtion 创作于:2015-08-31
全文约 599 字,
预计阅读时间为 2 分钟
使用Xcode7编写iOS9应用时,如果获取http://数据时会报如下错误:
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起,新特性要求App访问网络请求,要采用 HTTPS 协议。
如果仍想要使用HTTP协议,解决办法如下,修改项目的 Info.plist
文件,增加以下内容:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
如果觉得直接修改文件太麻烦,可以在项目的 Info
直接通过界面添加配置:
- 在
Info
中添加NSAppTransportSecurity
类型Dictionary
; - 在
NSAppTransportSecurity
下添加NSAllowsArbitraryLoads
类型Boolean
,值设为YES
;
完成后如下图: