翠鸟检查404状态

时间:2018-02-01 17:06:16

标签: ios swift xcode kingfisher

我正在使用以下调用使用KingFisher下载图像。 这项工作正常,但问题是所有视频都无法使用sddefault.jpg,而我必须使用hqdefault.jpg。我从服务器获得404状态,但如果它是404或200,我该如何检查这个状态?

我的代码:

self.searchResult.kf.setImage(with: URL(string: "https://i.ytimg.com/vi/\(String(describing: video.yt_id!))/sddefault.jpg"))

3 个答案:

答案 0 :(得分:2)

您需要使用完成块的setImage版本。其中一个参数是一个错误,它会告诉你失败的原因。

答案 1 :(得分:1)

几乎是这样的,不确定KF是否有相同的方法,但基本上完成块是" s" s完成后:{}"

self.searchResult.kf.setImage(with: URL(string: photo_url), completed: { (image: UIImage?, error: Error?, cache, url) in
                if error != nil {
                    self.imgSharedUser.image = self.user_image
                }
            })

答案 2 :(得分:1)

你可以试试这个:

KingfisherManager.shared.retrieveImage(with: url, options: nil, progressBlock: nil, completionHandler: { image, error, cacheType, imageURL in
    print(image)
    print(error)
     print(imageURL )

})