微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

单元格高亮显示默认图像而不是实际图像

如何解决单元格高亮显示默认图像而不是实际图像

我在表格的单元格中有一个头像。当我触摸一个单元格(突出显示)时,它会显示默认头像图像而不是实际图像。我不确定是什么原因造成的以及如何解决。有什么帮助吗?

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()
        
    } 
    //...
}

解决方法

如果您有正确显示图像的问题,我建议您使用 highlightedImageUIImageView 属性。

UITableViewCell 具有 .highlighted 属性(当单元格被按下时)。因此,如果单元格内部包含 UIImageView,那么当您选择/突出显示单元格时,UIImageView 将使用 .highlightedImage 而不是仅 .image

因此,作为问题的备份和解决方案,您可以另外提供/告诉UIImageView 显示头像,即使它突出显示。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。