首页 > 学院 > 开发设计 > 正文

Swift使用SDWebImage:Ambiguous use of

2019-11-09 17:54:35
字体:
来源:转载
供稿:网友

这样写就会出问题

imageView.sd_setImage(with:URL(string: self.imageData[i] as! String), placeholderImage:defaultImage, completed: { (image, error, cacheType, imageURL)->() in })

报错: Ambiguous use of ‘sd_setImage’

因为在Swift中要调有参数的方法:

imageView.sd_setImage(with: URL(string: self.imageData[i] as! String), placeholderImage: defaultImage, options: .retryFailed, completed: { (image, error, cacheType, imageURL) in })

这样就ok了。。。。。。。。。。。。。。。。。。。。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表