如何在另一行点击时取消选择一行?

时间:2017-11-28 13:47:41

标签: ios swift uitableview

以下是我要存档的内容:当第二个中文行被点击时,取消选择“英语”行。或者相反。

Picture

我只想显示一个复选标记,而不是全部。这是我的代码:

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    if tableView.cellForRow(at: indexPath)!.accessoryType == .checkmark  {
        tableView.cellForRow(at: indexPath)!.accessoryType = .none
        navigationItem.rightBarButtonItem!.isEnabled = false
    } else if tableView.cellForRow(at: indexPath)!.accessoryType == .none   {
        tableView.cellForRow(at: indexPath)!.accessoryType = .checkmark
        navigationItem.rightBarButtonItem!.isEnabled = true
    }
}

0 个答案:

没有答案