ios – 如何在Swift 3.0中使用SDWebImage完成块?

ios – 如何在Swift 3.0中使用SDWebImage完成块?,第1张

概述我用 SDWebImage来下载图片.如果成功下载图像,我想进一步 *** 作. cell.appIcon.sd_setImage(with: url, placeholderImage: UIImage.init(named: "App-Default"), completed: {(image: UIImage!, error: NSError!, cacheType: SDImageCacheTyp 我用 SDWebImage来下载图片.如果成功下载图像,我想进一步 *** 作.
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. })

但是我收到了错误:

Cannot convert value of type ‘(UIImage!,NSError!,SDImageCacheType,URL!) -> VoID’ to expected argument type ‘SDExternalCompletionBlock?’

解决方法 终于解决了.
cell.appIcon.sd_setimage(with: url!,placeholderImage: UIImage(named: "App-Default"),options: SDWebImageOptions(rawValue: 0),completed: { (image,error,cacheType,imageURL) in // Perform operation.})
总结

以上是内存溢出为你收集整理的ios – 如何在Swift 3.0中使用SDWebImage完成块?全部内容,希望文章能够帮你解决ios – 如何在Swift 3.0中使用SDWebImage完成块?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1103940.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存