如何修复“无法使用类型为“(with:URL)”的参数列表调用'setImage'”的错误

时间:2019-01-18 05:15:02

标签: image url imageurl kingfisher

我正在尝试使用Kingfisher将按钮设置为图像,但是viewDidLoad中这部分代码却出现错误-“无法使用类型为((with:URL))的参数列表调用'setImage'”

ProfileService.show { [weak self] (profile) in
    self?.profile = profile
...

    if let imageURL = URL(string: (profile?.imageURL ?? "")) {
        DispatchQueue.main.async {
            self?.profileButton.kf.setImage(with: imageURL)
        }
    }
}

0 个答案:

没有答案