返回时,自定义tableview单元格未取消选择?

时间:2019-02-08 18:53:02

标签: ios swift xcode tableview

我创建了一个自定义表格视图单元格。我为用户按下单元格添加了一个黑色的透明覆盖图像。效果很好,但是,当您返回到表格视图时,仍选中该单元格。这是我的代码。

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

    let selectedCell: PackCell = tableView.cellForRow(at: indexPath)! as! PackCell
    selectedCell.highlightImage.isHidden = false

    performSegue(withIdentifier: segueIdentifiers[indexPath.row], sender: self)

    tableView.deselectRow(at: indexPath, animated: true)

}

1 个答案:

答案 0 :(得分:2)

也许回来时还应该隐藏HighlightImage?

selectedCell.highlightImage.isHidden = true