我正在尝试将默认头像图像设置为“忍者”图像。但是此代码未显示默认图像。不知道出什么问题了。
ProfileService.showOtherUser(user: bet.sentToUser) { [weak self] (profile2) in
self?.profile2 = profile2
if (profile2?.imageURL == "") {
cell.userImage.image = UIImage(named: "ninja")
}else{
let imageURL = URL(string: ((profile2?.imageURL ?? "")))
cell.userImage.kf.setImage(with: imageURL)
}
}
}
答案 0 :(得分:0)
以这种方式将情节提要中的图像放置到图像视图中,直到您不通过程序更改它为止,它将保留为默认图像