http网址无法解析的处理
Posted Kriskee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了http网址无法解析的处理相关的知识,希望对你有一定的参考价值。
我们在Xcode中进行解析时,有时候会出现奔溃,检查打印日志显示:
2016-03-21 09:38:02.815 TriS[3385:43012] App Transport Securityhas blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app‘s Info.plist file.
这是因为ios 9.0之后不再支持http协议,而支持https(安全的http),此时我们需要解决这个问题,只需要在info.plist中进行处理,便可解决:
1.打开info.plist的源码(Open As -> Source Code),在XML中添加代码:
1 <key>NSAppTransportSecurity</key> 2 <dict> 3 <key>NSAllowsArbitraryLoads</key> 4 <true/> 5 </dict>
2.或者,直接在info.plist中进行添加
以上是关于http网址无法解析的处理的主要内容,如果未能解决你的问题,请参考以下文章
我无法从 firebase 获取下载网址()。请任何人帮助这是我的代码和错误。 (我正在使用片段)[重复]
带参数的 NSMutableURLRequest - 无法解析响应