iOS9https设置info.plist

Posted 柳刚

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS9https设置info.plist相关的知识,希望对你有一定的参考价值。

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图。

如图技术分享

以上是关于iOS9https设置info.plist的主要内容,如果未能解决你的问题,请参考以下文章

iOS 版本特定 info.plist 设置

适用于 iOS 访问令牌问题的 Facebook SDK

为 iOS 使用描述 Info.plist 键设置空字符串

为 iOS 使用描述 Info.plist 键设置空字符串

使用 CocoaPods 安装的框架的构建设置中的空 Info.plist 路径

我在 info.plist 中的 NSAppTransportSecurity 设置不适用于所有已定义的域和子域