Я пытаюсь установить изображение аватара по умолчанию для изображения "ниндзя".Однако изображение по умолчанию не отображается с этим кодом.Не уверен, что не так.
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)
}
}
}