gpt4 book ai didi

ios - 表格 View 标记多个单元格 Swift 3

转载 作者:搜寻专家 更新时间:2023-10-31 08:30:50 25 4
gpt4 key购买 nike

我有一个非常烦人的问题。

我有一个包含大约 50 个单元格的 tableView,显示了一些选项,我可以从中选择我想要的选项。我在 Apple 的文档中读到,默认情况下,单元格在未显示时会被重复使用。有了这个,如果我选择第一个单元格,每6个单元格1被标记,也就是说,如果我选择前6个单元格,表格中的所有单元格都被标记!

我的表格 View 允许多项选择。选择是这样进行的:

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.cellForRow(at: indexPath)?.accessoryType = UITableViewCellAccessoryType.checkmark
}

我该如何解决这个问题?我知道你有这样一个子类的“prepareForReuse ()”,这是解决方案吗?如果是这样,您能举个例子说明您会怎么做吗?

最佳答案

下面的代码可能对你有帮助

var arr_selectedindePath = NSMutableArray()
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath)
{
if arr_selectedindePath .contains(indexPath) {

arr_selectedindePath .remove(indexPath)
tableView.cellForRow(at: indexPath)?.accessoryType = UITableViewCellAccessoryType.none
}
else
{
arr_selectedindePath .add(indexPath)
tableView.cellForRow(at: indexPath)?.accessoryType = UITableViewCellAccessoryType.checkmark
}

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

let cell: UITableViewCell = tableView.dequeueReusableCell(withIdentifier: "cell")!
if arr_selectedindePath .contains(indexPath) {
cell.accessoryType = .checkmark
}
else
{
cell.accessoryType = .none
}

}

关于ios - 表格 View 标记多个单元格 Swift 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42159185/

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