欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Error Domain=NSURLErrorDomain Code=-1022 “The resource could not be loaded because the App Transport

程序员文章站 2024-02-20 17:55:34
...

《swift学习》Code= -1022错误

在进行数据请求时遇到了1022错误,这里记录一下Error Domain=NSURLErrorDomain Code=-1022 “The resource could not be loaded because the App Transport
这是因为原来的数据请求是使用的http,苹果官方在Xcode7后要求使用安全的https,所以会出现这个错误,下面是这个错误的解决:

解决:只需要在info.list中添加下面代码:

  <key>NSAppTransportSecurity</key>
        <dict>
            <key>NSAllowsArbitraryLoads</key>
            <true/>
        </dict>
相关标签: swift学习 swift