本文介绍了如何在Swift 3.0中使用SDWebImage完成块?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用下载图片。如果成功下载图像,我想进一步操作。
Am using SDWebImage to download image. I want to do further operation if image is downloaded successfully.
cell.appIcon.sd_setImage(with: url, placeholderImage: UIImage.init(named: "App-Default"), completed: {(image: UIImage!, error: NSError!, cacheType: SDImageCacheType, imageURL: URL!) -> Void in
// Perform operation.
})
但我收到错误:
推荐答案
终于解决了。
cell.appIcon.sd_setImage(with: url!, placeholderImage: UIImage(named: "App-Default"),options: SDWebImageOptions(rawValue: 0), completed: { (image, error, cacheType, imageURL) in
// Perform operation.
})
这篇关于如何在Swift 3.0中使用SDWebImage完成块?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!