iOS 11提示"The resource could not be loaded because the App Transport Security policy requires the use of a secure connection" 解决方法

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

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

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

NSAppTransportSecurity

NSAllowsArbitraryLoads

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


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

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


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

你可能感兴趣的:(iOS 11提示"The resource could not be loaded because the App Transport Security policy requires the use of a secure connection" 解决方法)