美文网首页
iOS 11提示"The resource could not

iOS 11提示"The resource could not

作者: kendi_66 | 来源:发表于2017-12-24 22:35 被阅读0次

    原因:iOS9以后,苹果把原http协议改成了https协议,所以不能直接在http协议下GET/POST。

    此段翻译为:资源不能被加载,因为该应用程序传输的安全策略要求使用安全连接。

    解决方法一:用文本编辑器打开Info.plist,插入代码

    <key>NSAppTransportSecurity</key>
    <dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
    </dict>

    解决方法二:1.在Xcode里选中info.plist,点击右边的information Property List 后边的加号


    QQ20171224-222609@2x.png

    2.写入App Transport Security Settings然后回车,先点击左侧展开箭头,再点右侧加号,Allow Arbitrary Loads 已经自动生成,直接回车。

    QQ20171224-222143@2x.png

    3.需要把默认的值改成YES


    QQ20171224-223219@2x.png

    第一次简书记录
    参考两位网友链接如下:
    https://www.cnblogs.com/36bian/p/5237138.html
    https://www.jianshu.com/p/43d49c1f9ee9

    相关文章

      网友评论

          本文标题:iOS 11提示"The resource could not

          本文链接:https://www.haomeiwen.com/subject/unqkgxtx.html