如何在UITableView中取消选择所选单元格

时间:2017-12-09 15:58:43

标签: ios uitableview

通常情况下,当我触摸UITableViewCell时,会选择并突出显示UITableViewCell。

但是,再次触摸完全相同的UITableViewCell,然后什么也没发生。

我希望如果我触摸选定的UITableViewCell,则取消选择UITableVIewCell。

override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        guard let cell = tableView.cellForRow(at: indexPath) else { return }
        if cell.isSelected == true {
            cell.isSelected = false
        }
    }

/////

override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        guard let cell = tableView.cellForRow(at: indexPath) else { return }
        if cell.isSelected == false {
            cell.isSelected = true
        } else {
            cell.isSelected = false
        }
    }

两个源代码都不起作用。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

最小工作示例(前7个单元格可选):

import UIKit
import PlaygroundSupport

class MyTableViewController: UITableViewController {

    var selectedIndexPath: IndexPath? = nil

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 7
    }

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        return UITableViewCell()
    }

    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        if selectedIndexPath == indexPath {
            // it was already selected
            selectedIndexPath = nil
            tableView.deselectRow(at: indexPath, animated: false)
        } else {
            // wasn't yet selected, so let's remember it
            selectedIndexPath = indexPath
        }
    }
}

// Present the view controller in the Live View window
PlaygroundPage.current.liveView = MyTableViewController()