作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在一个UIViewController
中有一个UITableView
,我尝试存储accessoryType的状态,以便当用户重新加载应用程序时,用户之前选择的单元格使用NSUserDefault
应显示带有复选标记。但我面临的问题是,当我检查单元格的数据是否等于用户默认的数据时,一些未选择的单元格也会显示一个复选标记,但它不应该这样做。
这是我的代码:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = newCategoriesTableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.backgroundColor = colorArray[indexPath.row]
let entry: Categories
if isFiltering() {
entry = filteredCategories[indexPath.row]
} else {
entry = categoryTitles[indexPath.row]
}
cell.selectionStyle = .none
cell.textLabel?.text = entry.name
cell.detailTextLabel?.text = entry.description
let defaults = UserDefaults.standard
if let userCategortList = defaults.object(forKey: "userCategoryList") as? [String]{
for category in userCategortList{
if(cell.textLabel?.text == category){
cell.accessoryType = .checkmark
break
}
}
}
return cell
}
最佳答案
这可能是单元重用问题,因为您正在使单元出队。您需要确保为未设置为复选标记的情况设置 cell.accessoryType = .none
。
关于ios - 如何保存特定 UITableViewCell 的复选标记状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47168831/
我是一名优秀的程序员,十分优秀!