引言:
iOS9引入了新特性App Transport Security (ATS)。详情:App Transport Security (ATS)
新特性要求App内访问的网络必须使用HTTPS协议。但是现在公司的项目使用的是HTTP协议,使用私有加密方式保证数据安全。现在也不能马上改成HTTPS
协议传输。
解决办法:
通过配置Info.plist文件:
在Info.plist
中添加NSAppTransportSecurity
类型为:Dictionary。
在NSAppTransportSecurity
下添加NSAllowsArbitraryLoads
类型为Boolean,值设为YES。通过代码解决:
将Info.plist文件 Source Code 打开, 输入下面代码:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
GitHub: https://github.com/LiCheng244/LCUtils
个人博客: http://www.licheng244.com/