当我们关闭开关时,我们如何取消选择该行

How can we deselect the row when we Off the switch

我有一个表格视图。在 tableview 单元格中,我有一个标签和开关。这里我想在开关关闭时取消选择该行。

这是我的代码:

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! BM_MyBusinessTableViewCell

    cell.tapSwitch.tag = indexPath.row
    cell.businessLabel.text = labelArray[indexPath.row]
}

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

点击开关时不要select/deselect单元格。只需存储所选开关的 indexPath.row 并重新加载表格视图。

class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate   {
    @IBOutlet weak var tableView: UITableView!

    let labelArray = ["Employees", "Break Time Setup", "Employee Timeoff", "Reports", "Messages"]
    var selectedIndexPaths = [Int]()
    override func viewDidLoad() {
        super.viewDidLoad()

    }
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return labelArray.count
    }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "Cell") as! Cell
        cell.selectionStyle = .none
        cell.tapSwitch.isOn = selectedIndexPaths.contains(indexPath.row)
        cell.tapSwitch.tag = indexPath.row
        cell.tapSwitch.addTarget(self, action: #selector(tapSwitchAction(_:)), for: .valueChanged)
        cell.businessLabel.text = labelArray[indexPath.row]
        return cell
    }
    @objc func tapSwitchAction(_ sender: UISwitch) {
        if sender.isOn {
            selectedIndexPaths.append(sender.tag)
        } else {
            selectedIndexPaths.removeAll { [=10=] == sender.tag }
        }
        tableView.reloadData()
    }
}

然后你可以像这样在任何地方获取选定的行值

@objc func getSelectedValues() {
    let selectedLabelArray = labelArray.enumerated().filter { selectedIndexPaths.contains([=11=].offset) }
    print(selectedLabelArray)
}

更新

选项 1

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    if selectedIndexPaths.contains(indexPath.row) {
        selectedIndexPaths.removeAll { [=12=] == indexPath.row }
    } else {
        selectedIndexPaths.append(indexPath.row)
    }
    tableView.reloadData()
}
func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
    //do nothing
}

选项 2

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    if let cell = tableView.cellForRow(at: indexPath) as? BM_MyBusinessTableViewCell {
        cell.tapSwitch.isOn = !cell.tapSwitch.isOn
        tapSwitchAction(cell.tapSwitch)
    }
}
func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
    if let cell = tableView.cellForRow(at: indexPath) as? BM_MyBusinessTableViewCell {
        cell.tapSwitch.isOn = !cell.tapSwitch.isOn
        tapSwitchAction(cell.tapSwitch)
    }
}