iOS 11使用ATS从HTTP加载图像

时间:2017-09-15 20:08:30

标签: ios swift web-services nsurl

您有以下代码从Web服务器下载图像。该请求是HTTP所以不安全。

 DispatchQueue.global(qos: .userInitiated).async {
        var productImage = Utilities.GetEmptyImageBottle()
        if (entry.ImageName != nil || entry.ImageUrl != nil) {
            let data = NSData(contentsOf: URL(string: entry.ImageUrl.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed)!)!)

            if data != nil {
                let image = UIImage(data: data! as Data)
                productImage = image!
            }
        }
        DispatchQueue.main.async {
            cell.ProductImage.image = productImage
        }
    }

我还在info.plist中添加了以下内容

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

现在我的图片没有加载,我收到以下错误:

NSURLConnection finished with error - code -1002

这是在运行iOS 11的Xcode 9中。在Xcode 8的iOS 10上,没问题。

我错过了什么?

3 个答案:

答案 0 :(得分:1)

NSURLErrorUnsupportedURL最可能的原因是URL没有可用的协议处理程序(可能你的URL字符串在URL前缀中缺少'http://'。)。

答案 1 :(得分:0)

Error : Error Domain=NSURLErrorDomain Code=-1002 "unsupported URL" 

-1002似乎更像URL(主机名)而不是http。

答案 2 :(得分:0)

我不确定这个问题是由iOS 11还是Xcode 9引起的,但听起来你需要应用这个

.addingPercentEncoding(withAllowedCharacters:.urlPathAllowed)

仅在您可能找到特殊字符的URL的最后部分。我尝试了它并且它工作,将它应用于完整的URL腐败http:格式为http%35,这不是url的基础,因此不会检测web视图的失败事件。因此,只将它应用于您可能怀疑它包含特殊字符谎言空间等的网址部分