📜  检查和取消选中 uitableview swift 5 中的单元格 - Swift 代码示例

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

代码示例1
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        tableView.cellForRow(at: indexPath)?.accessoryType = .checkmark
  }

  func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
        tableView.cellForRow(at: indexPath)?.accessoryType = .none
  }