如何取消选择所选行

时间:2016-10-04 17:07:46

标签: ios swift uitableview tableviewcell

如何在此处选择另一行时取消选择行我在cellForRowAtIndexPath

中有此行
if ff.isVisitedd{
        cell.accessoryType = .Checkmark
    }else{
        cell.accessoryType = .None
 }

这在didSelectRowAtIndexpath

if let cell = tableView.cellForRowAtIndexPath(indexPath) {
        let selectedRows = tableView.indexPathsForSelectedRows! as? [NSIndexPath]
        let ff: Card!
        ff = cards[indexPath.row]
        ff.isVisitedd = true
        cell.accessoryType = .Checkmark
    }

2 个答案:

答案 0 :(得分:1)

Swift 3

您可以使用deselectRow(at:,animated:)方法。

Swift 2

deselectRowAtIndexPath(indexPath:,animated:)

答案 1 :(得分:0)

根据我的理解,您希望在选择其他单元格时删除先前选定单元格的复选标记。由于在cellForRowAtIndexPath方法中,您已经正确设置了accessoryType,因此任何新单元格都将具有正确的复选标记状态。剩下的唯一工作是删除现有单元格上的复选标记(如果有)。您可以从表视图的visibleCells获取现有单元格。一种可能的解决方案是:

tableView.visibleCells.filter { $0 != cell }.forEach { $0.accessoryType = .None }

如果您更喜欢for-loop:

for visibleCell in tableView.visibleCells where visibleCell != cell {
    visibleCell.accessoryType = .None
}