The-resource-could-not-be-loaded-because-the-App-Transport-Security-policy-requires-the-use-of-a-secure-connection

iOS默认不支持访问HTPP的接口

如果要调用HTTP接口的话

需要在info.plist文件里面

1
2
3
4
5
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>

这样就可以访问HTTP的请求了