UITableView tap to deselect cell

前端 未结 14 1644
野性不改
野性不改 2020-12-16 10:37

I have a UITableViewCell that is selected when tapped. During this selected state, if the user taps the cell again, I want the cell to deselect.

I can\

14条回答
  •  隐瞒了意图╮
    2020-12-16 11:13

    Swift 5.

    In the UITableViewDelegate, it's as simple as follows:

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        tableView.deselectRow(at: indexPath, animated: true)
    }
    

提交回复
热议问题