I'm trying to delete rows, delete sections and reload rows simultaneously. I made a simple app to demonstrate my crash. It starts with 3 sections. When buttonPressed is called, sections 0 and 1 are removed from data, then performBatchUpdates is called to update the table view.

class ViewController: UIViewController {

    @IBOutlet var tableView: UITableView!

    var data: [[String]] = [
        ["0-0"],
        ["1-0"],
        ["2-0",
         "2-1",
         "2-2"],
    ]

    @IBAction func buttonPressed(_ sender: UIButton) {
        data = [
            ["2-0 new",
             "2-1 new",
             "2-2 new"],
        ]

        tableView.performBatchUpdates({
            self.tableView.deleteRows(at: [
                  IndexPath(row: 0, section: 0),
                  IndexPath(row: 0, section: 1),
              ], with: .automatic)

            self.tableView.reloadRows(at: [
                IndexPath(row: 0, section: 2),
                IndexPath(row: 1, section: 2),
                IndexPath(row: 2, section: 2),
            ], with: .automatic)

            self.tableView.deleteSections(IndexSet([0, 1]), with: .automatic)

        }, completion: nil)
    }
}

extension ViewController: UITableViewDelegate, UITableViewDataSource {
    func numberOfSections(in tableView: UITableView) -> Int {
        return data.count
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return data[section].count
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
        cell.textLabel?.text = data[indexPath.section][indexPath.row]
        return cell
    }
}

I get the following row/section accounting exception, but I don't understand where some of the numbers are coming from:

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (3) must be equal to the number of rows contained in that section before the update (3), plus or minus the number of rows inserted or deleted from that section (2 inserted, 3 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'

0

There are 0 best solutions below