报错:error:Error Domain=NSURLErrorDomain Code=-1022 "The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.“
原因:iOS9引入了新特性App Transport Security (ATS)
解决问题只是把ATS禁用了,不是最好的方法。
info.plist: 加入
- 添加
NSAppTransportSecurity
类型Dictionary
。 - 在
NSAppTransportSecurity
下添加NSAllowsArbitraryLoads
类型Boolean
,值设为YES
代码:<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
打开info.plist是这样的: