如何在此处选择另一行时取消选择行我在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
}
答案 0 :(得分:1)
您可以使用deselectRow(at:,animated:)
方法。
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
}