gpt4 book ai didi

ios - 如何取消选择选定的行

转载 作者:行者123 更新时间:2023-11-28 16:08:43 25 4
gpt4 key购买 nike

如何在此处选择另一行时取消选择一行我在我的 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
}

最佳答案

swift 3

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

swift 2

deselectRowAtIndexPath(indexPath:,animated:)

关于ios - 如何取消选择选定的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39858043/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com