问题描述
我在表格的单元格中有一个头像。当我触摸一个单元格(突出显示)时,它会显示默认头像图像而不是实际图像。我不确定是什么原因造成的以及如何解决。有什么帮助吗?
func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "TableViewCell",for: indexPath) as? TableViewCell else {
fatalError("Can't find cell")
}
//...
cell.selectionStyle = .default
self.configCell(cell: cell,indexPath: indexPath)
//...
}
func configCell(cell: TableViewCell,indexPath: IndexPath) {
//...
// Avatar
if let url = URL(string: urlString) {
cell.avatarImageView.image = .defaultimage
cell.tag = indexPath.row
let task = URLSession.shared.dataTask(with: url) { data,response,error in
guard let data = data,error == nil else { return }
dispatchQueue.main.async {
if cell.tag == indexPath.row {
cell.avatarImageView.image = UIImage(data: data)
}
}
}
task.resume()
}
//...
}
解决方法
如果您有仅正确显示图像的问题,我建议您使用 highlightedImage
的 UIImageView
属性。
UITableViewCell
具有 .highlighted
属性(当单元格被按下时)。因此,如果单元格内部包含 UIImageView
,那么当您选择/突出显示单元格时,UIImageView
将使用 .highlightedImage
而不是仅 .image
。
因此,作为问题的备份和解决方案,您可以另外提供/告诉UIImageView
显示头像,即使它突出显示。