标签:知识库 lib 类型 报错信息 技术 word port source policy
Xcode 7.0也就是iOS9.0中开发要求App内访问的网络必须使用HTTPS协议。那么我们公司没用采用https怎么办?如果发现网络请求失败,Xcode后台报错信息为: The resource could not be loaded because the App Transport Security policy requires the use of a secure connection. (大概意思就是:资源数据不能被下载,因为APP传输安全策略需要采用安全的连接方式)。
在Info.plist中添加NSAppTransportSecurity类型Dictionary。 在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为YES
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
找到info.plist,注意不是测试文件里面的plist哦。 操作见GIF图。
如图
标签:知识库 lib 类型 报错信息 技术 word port source policy
原文地址:http://www.cnblogs.com/liugangBlog/p/6654187.html