我正在尝试创建一个应用程序来选择/取消选择 tableView 中的行,所有数据都是从 coreData 加载的,当我选择一个允许我在 coreData 中更新它的元素时,反之亦然,
一开始一切正常,我从 coreData 加载数据,在 tableView 中显示所有项目,如果需要,在 cellForRowAtindexPath 中检查行
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
var cell:UITableViewCell? = nil
let item = (arrayToDisplay[indexPath.section] as Array<NSManagedObject>)[indexPath.row]
cell = tableView.dequeueReusableCell(withIdentifier: "ShoppingCell")!
let lblName:UILabel = cell?.viewWithTag(101) as! UILabel
let attributedString = NSMutableAttributedString(string: (item.value(forKeyPath: "name") as! String?)!)
if( item.value(forKeyPath: "bought") as! Bool)
{
attributedString.addAttribute(NSStrikethroughStyleAttributeName, value: NSNumber(value: NSUnderlineStyle.styleSingle.rawValue), range: NSMakeRange(0, attributedString.length))
attributedString.addAttribute(NSStrikethroughColorAttributeName, value: UIColor.red, range: NSMakeRange(0, attributedString.length))
cell?.setSelected(true, animated: true) //set checkMark to active/checked status
}
lblName.attributedText = attributedString
return cell!
}
在此之前,我已启用如下所示的编辑样式
func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCellEditingStyle {
return UITableViewCellEditingStyle(rawValue: 3)!
}
当我第一次加载 View 时一切正常,当我选中或取消选中更新 CoreData 中的值并重新加载我的 tableView 时,我从 中的 coreData 和 tableView 重新加载数据viewDidAppear,所以每当我在场景之间切换时都会使用新数据进行刷新
当我在我的 tableView 中检查一个项目时,我会保存数据、更新我的类数组并 reloadData 以显示新的更改(包括文本删除线)
这就是问题所在,每当我重新加载 tableView 或在选项卡之间切换(在 TabBar 中)并返回时,未正确检查复选标记,我无法检查它们,它们看起来像是已检查并且在不到一秒钟的时间内取消选中,
我已经检查过我的代码中可能存在一些冲突,但一切都是正确的,因为对 coreData 的所有更新操作都已正确完成,
我关注了来自 Maitrayee Ghosh 的示例项目在 ObjC 中编写,您可以通过将 [tableView reloadData] 添加到 didSelectRowAtIndexPath 来模拟相同的问题,如下所示
- (void)tableViewUITableView *)tableView didSelectRowAtIndexPathNSIndexPath *)indexPath{
NSLog(@"user selected %@",[dataArray objectAtIndex:indexPath.row]);
[tableView reloadData];}
那么,我如何刷新带有复选标记状态的 tableView 内容,并通过更改状态的能力正确检查,例如 Google Keep 复选框注释
两件事。
在 cellForRowAt
中,您需要在 if
语句中添加 else
。
if( item.value(forKeyPath: "bought") as! Bool)
{
attributedString.addAttribute(NSStrikethroughStyleAttributeName, value: NSNumber(value: NSUnderlineStyle.styleSingle.rawValue), range: NSMakeRange(0, attributedString.length))
attributedString.addAttribute(NSStrikethroughColorAttributeName, value: UIColor.red, range: NSMakeRange(0, attributedString.length))
cell?.setSelected(true, animated: false)
} else {
cell?.setSelected(false, animated: false)
}
单元格会被重复使用,因此您必须始终处理这两种情况。
在您的 didSelectRowAt
方法中,您需要更新数据模型,以便 cellForRowAt
正确呈现单元格。
关于ios - 在 tableView 问题中重新加载 View 或 reloadData 后选择复选标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42723313/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |