需要实现的方法:
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath){
print("You selected cell #\(indexPath.row)!")
let cell = tableView.cellForRow(at: indexPath)
// 当前已是勾选状态则取消勾选
if cell?.accessoryType == .checkmark {
cell?.accessoryType = .none
} else {
cell?.accessoryType = .checkmark
addTips()
}
}
单选可以参考:这里