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完成块?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)