gpt4 book ai didi

swift - 如果电池附件类型设置为 "checkmark"是否会自动选择它?

转载 作者:行者123 更新时间:2023-11-28 14:29:46 24 4
gpt4 key购买 nike

我有一个在数组中存储索引值的表。

在选择一行时,它们附加到数组

当我单击上一个按钮并希望用这些索引填充表格并自动检查标记它们(如果它们在数组中)时,问题就来了。

虽然我的问题是:我是否需要在 cellForRowAt 上运行循环并检查它们是否在数组中并分配复选标记。 (这算作“选中”还是我需要循环并调用 tableview.selectRow 然后分配复选标记?

到目前为止,我遇到了这个问题。

  func cellForRowAt: 

if let question = allQuestions[currentQuestion - 1].userAnswer {
if question.contains([indexPath.row]) {
// print("contains row")
//tableView.selectRow(at: indexPath, animated: true, scrollPosition: .none)
cell.accessoryType = .checkmark
} else {
// print("does not contain")
cell.selectionStyle = .none
}
}

最佳答案

cell.accessoryType = .checkmark

不是一回事

tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)

调用 tableView.selectRow 将在单元格显示时设置 isSelected 属性。然后,您的单元格子类可以使用该属性设置 accessoryType,而不是在 cellForRow 中设置。

override var isSelected: Bool {
didSet {
accessoryType = isSelected ? .checkmark : .none
}
}

然后在 viewDidLoad 中,告诉 UiTableView 应该选择哪一行。

关于swift - 如果电池附件类型设置为 "checkmark"是否会自动选择它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51344555/

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