📜  取消选择单元格快速代码示例

📅  最后修改于: 2022-03-11 15:01:00.459000             🧑  作者: Mango

代码示例1
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    //Change the selected background view of the cell.
    tableView.deselectRow(at: indexPath, animated: true)
}