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

Ios 当我们关闭开关时,如何取消选择行,ios,swift,uitableview,uiswitch,Ios,Swift,Uitableview,Uiswitch,我有一个桌面视图。在tableview单元格中,我有一个标签和开关。在这里,我想在关闭开关时取消选择行 这是我的密码: func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! B

我有一个桌面视图。在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)
}

点击开关时,不要选择/取消选择单元格。只需存储选定开关的indexPath.row并重新加载tableview即可

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 { $0 == sender.tag }
        }
        tableView.reloadData()
    }
}
然后,您可以像这样在任何地方获得选定的行值

@objc func getSelectedValues() {
    let selectedLabelArray = labelArray.enumerated().filter { selectedIndexPaths.contains($0.offset) }
    print(selectedLabelArray)
}
更新

选择1

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    if selectedIndexPaths.contains(indexPath.row) {
        selectedIndexPaths.removeAll { $0 == 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)
    }
}

未选择任何行。没有可取消选择的内容。如何选择?请提出建议me@mattcani使用delegated当用户点击该行时,该行被选中。然后在代理中取消选择。我不明白问题应该是什么。当switch-isOn=true时,行应该是正常的,但当switch-isOn=false时,它应该取消选择行。。。我正在尝试这个功能。。。请帮助我@mattery一切正常,但唯一的问题是我无法取消选择是否有任何解决方案