与may tableView有奇怪的事情

我有

我的代表有

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()后出现错误而崩溃的问题

“尝试将第3行插入第0部分,但更新后第0部分只有3行”

我不明白。 TableView具有与执行插入操作完全相同的行数。我将属性设置为nil,然后重新加载表,通过此操作,我将表的行数减少为两。然后,我再次将editingIndexPath设置为非零值,该值表示应使用count + 1的信号代表方法,但失败的方式相同。

同样有趣的是,相同的代码但没有重新加载就不会失败
            editingIndexPath = IndexPath(row: indexPath.row + 1, section: 0)
            if let editingIndexPath = editingIndexPath {
                tableView.insertRows(at: [editingIndexPath], with: .top)
            }

这里发生了什么事 ?

最佳答案

表格视图的第0部分(Row1,Row1,Row3)具有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/

10-10 03:58