gpt4 book ai didi

swift - NSURLErrorDomain 代码=-1100

转载 作者:行者123 更新时间:2023-11-30 13:12:00 24 4
gpt4 key购买 nike

我试图将图片下载到我的应用程序

enter image description here请求失败,错误为 NSURLErrorDomain,代码实际上是 -1100。该网址应该是正确的,因为我在浏览器中检查过它。有人知道为什么吗?

let userImageURL: String! = "http://i.imgur.com/QhCzQoR.jpg";
let url = NSURL(fileURLWithPath: userImageURL);
let request:NSURLRequest = NSURLRequest(URL: url!)
NSURLConnection.sendAsynchronousRequest(request, queue: NSOperationQueue.mainQueue(), completionHandler: { (response:NSURLResponse!, imageData:NSData!, error:NSError!) -> Void in
let image = UIImage(data: imageData!);
})

最佳答案

您遇到此问题的原因是因为您使用了

let url = NSURL(fileURLWithPath: userImageURL);

您应该使用:

let url = NSURL(string: userImageUrl)

关于swift - NSURLErrorDomain 代码=-1100,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38630636/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com