标签:
问题:
“Application Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app‘s Info.plist file.”
解决:
info.plist文件添加
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
标签:
原文地址:http://www.cnblogs.com/Eazy/p/4824093.html