我正在尝试使用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)
}
}
}