iOS9与XCode7中不能使用http连接的快速解决办法

2025-05-29 0 57

在xcode7.0及以上版本中编译ios app时,默认会使用ios9的一项新特性,使得所有http连接被禁用,项目里使用的api没有https支持,就悲剧了。差了官方文档,有这么一段话

?

1

2

3
app transport security

app transport security (ats) enforces best practices in the secure connections between an app and its back end. ats prevents accidental disclosure, provides secure default behavior, and is easy to adopt; it is also on by default in ios 9 and os x v10.11. you should adopt ats as soon as possible, regardless of whether you're creating a new app or updating an existing one.

if you're developing a new app, you should use https exclusively. if you have an existing app, you should use https as much as you can right now, and create a plan for migrating the rest of your app as soon as possible. in addition, your communication through higher-level apis needs to be encrypted using tls version 1.2 with forward secrecy. if you try to make a connection that doesn't follow this requirement, an error is thrown. if your app needs to make a request to an insecure domain, you have to specify this domain in your app's info.plist file.

在这里面可以看到,通过修改info.plist文件可以继续使用http连接,具体的方法如下:

1.在项目左侧找到info.plist文件,可以通过filter来搜索

iOS9与XCode7中不能使用http连接的快速解决办法

2.在右侧点击add row添加nsapptransportsecurity,类型为dictionary,然后再添加子项目nsallowsarbitraryloads类行为boolean值为yes

iOS9与XCode7中不能使用http连接的快速解决办法

这样就可以重新使用普通的http连接了。不过有条件的话,还是去搞一个https吧.

以上所述是小编给大家介绍的ios9与xcode7中不能使用http连接的快速解决办法,希望对大家有所帮助

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 iOS9与XCode7中不能使用http连接的快速解决办法 https://www.kuaiidc.com/91425.html

相关文章

发表评论
暂无评论