Hello Stackoverflow,
我将swift应用程序移动到Swift2.0后,我不断收到此错误:
App 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.The resource Could not be loaded because the App Transport Security policy requires the use of a secure connection.
我看了下面的链接https://forums.developer.apple.com/thread/5835
并将以下代码添加到我的info.pList中
<key>NSAppTransportSecurity</key><dict> <key>NSAllowsArbitraryLoads</key> <true/> <key>NSExceptionDomains</key> <dict/></dict>
它仍然不起作用,任何人都有替代解决方案?
解决方法 它不是Swift 2.0问题,实际上是iOS 9.0问题,其中iOS 9.0强制网络流量超过https设置,以下标志允许http流量.您必须在.pList文件中的NSAppTransportSecurity字典下将NSAllowsArbitraryLoads键设置为YES.希望这可以帮助!
总结以上是内存溢出为你收集整理的ios – Swift2.0 HTTP请求无法正常工作全部内容,希望文章能够帮你解决ios – Swift2.0 HTTP请求无法正常工作所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)