当VC从另一个VC返回时,如何清除UITableVIew中的所有检查?

时间:2016-11-30 18:44:22

标签: ios swift uitableview uiviewcontroller

我有一个场景,其中UITableView显示联盟中的球员列表。

用户选择两个玩家来比较结果。当用户选择玩家时,显示支票。一旦用户选择了两个用户,就会显示一个新的VC,显示两个玩家的结果。

在这个ResultsVC上,我有一个后退按钮,它取消了ResultsVC,并且视图返回到原始VC。

返回此原始VC后,选择观看的玩家旁边的支票仍然可见。

如何在返回此VC时重置所有检查?

这是我使用TableView的原始VC的代码:

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



    let cell = tableView.dequeueReusableCell(withIdentifier: "PersonalStatsTableViewCell", for: indexPath as IndexPath) as! PersonalStatsTableViewCell

    cell.textLabel?.text = self.communityPlayers[indexPath.row]
    cell.textLabel?.font = UIFont(name: "Avenir", size: 12)
    cell.textLabel?.textColor = UIColor.white // set to any colour
    cell.layer.backgroundColor = UIColor.clear.cgColor

    cell.personalStatsInfoButton.tag = indexPath.row
    cell.personalStatsInfoButton.addTarget(self, action: #selector(infoClicked), for: UIControlEvents.touchUpInside)

    cell.selectedBackgroundView?.backgroundColor = UIColor.red

    return cell

}

func infoClicked(sender:UIButton){
    let buttonRow = sender.tag
    self.friendId = self.communityPlayerIds[buttonRow]
    self.personalSelf = false
    self.friendName = self.communityPlayers[buttonRow]
    self.performSegue(withIdentifier: "personalStatsSegue", sender: self)
}

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

    self.selectedCellTitle = self.communityPlayers[indexPath.row]
    cellId = indexPath.row
    //print (self.communityPlayerIds[indexPath.row])

    if let cell = tableView.cellForRow(at: indexPath) {
        if cell.isSelected {
            cell.accessoryType = .checkmark
        }
    }

    if let sr = tableView.indexPathsForSelectedRows {
        print("didSelectRowAtIndexPath selected rows:\(sr)")
        if sr.count == 2{
            let tempId_1 = sr[0][1]
            let tempId_2 = sr[1][1]
            self.tempCount = 2
            self.tempPlayerId_1 = self.communityPlayerIds[tempId_1]
            self.tempPlayerId_2 = self.communityPlayerIds[tempId_2]

            print ("you have selected player I'ds: ", self.tempPlayerId_1!, "and ", self.tempPlayerId_2!)
            self.performSegue(withIdentifier: "showHeadToHeadSegue", sender: self)
        }


    }


}

func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {

    if let cell = tableView.cellForRow(at: indexPath as IndexPath) {
        cell.accessoryType = .none
    }

    if let sr = tableView.indexPathsForSelectedRows {
        print("didDeselectRowAtIndexPath selected rows:\(sr)")

    }


}
}

我已阅读过该主题,但似乎没有任何效果。

1 个答案:

答案 0 :(得分:0)

怀疑它。

我添加了

cell.accessoryType = .none

进入func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell函数

然后,当返回视图时,将删除所有检查。