• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 在 tableView 问题中重新加载 View 或 reloadData 后选择复选标记

[复制链接]
菜鸟教程小白 发表于 2022-12-13 00:05:34 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在尝试创建一个应用程序来选择/取消选择 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 复选框注释



Best Answer-推荐答案


两件事。

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/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap