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

ios - 尝试将第 3 行插入第 0 节,但更新后第 0 节中只有 3 行

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

may tableView 有点奇怪

我有

在我的委托(delegate)中,我有

var editingIndexPath: IndexPath?

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        if let editingIndexPath = editingIndexPath {
            return datasource.count + 1
        } else {
            return datasource.count
        }

    }

在我的 didSelect 我有

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

            if let oldEditingIndexPath = editingIndexPath {
                    self.editingIndexPath = nil
                    tableView.reloadData()
                    self.editingIndexPath = IndexPath(row: indexPath.row + 1, section: 0)
                    tableView.insertRows(at: [self.editingIndexPath!], with: .top)
            } else {
                editingIndexPath = IndexPath(row: indexPath.row + 1, section: 0)
                if let editingIndexPath = editingIndexPath {
                    tableView.insertRows(at: [editingIndexPath], with: .top)
                }
            }
    }

tableView.reloadData() 报错后崩溃的问题

'attempt to insert row 3 into section 0, but there are only 3 rows in section 0 after the update'

我不明白。 TableView 具有执行插入所需的完全相同的行数。我将属性设置为 nil 然后重新加载表,通过这个操作我将表的行数减少到两个。然后我再次将 editingIndexPath 设置为非零值信号委托(delegate)方法,它应该使用 count + 1。但它以同样的方式失败。

同样有趣的是,相同的代码但没有重新加载之前永远不会失败

            editingIndexPath = IndexPath(row: indexPath.row + 1, section: 0)
            if let editingIndexPath = editingIndexPath {
                tableView.insertRows(at: [editingIndexPath], with: .top)
            }

这里发生了什么?



Best Answer-推荐答案


表格 View 的第 0 部分(第 1 行、第 1 行、第 3 行)有 numberOfRowsInSection 3。在尝试插入超过 numberOfRowsInSection 计数的 Row4 时,抛出上述错误

这可能会更好(注意:毫无逻辑的意图)

  func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
     // better to check with datasource array elements count
     if indexPath.row + 1 < tableView.numberOfRows(inSection: indexPath.section) {
          self.editingIndexPath = IndexPath(row: indexPath.row + 1, section: 0)
          tableView.insertRows(at: [self.editingIndexPath!], with: .top)
     } 
  }

关于ios - 尝试将第 3 行插入第 0 节,但更新后第 0 节中只有 3 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46975985/

回复

使用道具 举报

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

本版积分规则

关注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