删除导致崩溃的 UITableViewCell

Deleting UITableViewCell causing crash

我知道有很多关于这个主题的帖子,我已经浏览了其中的大部分,但我仍然无法解决删除 tableViewCell 导致我的应用程序崩溃并出现以下错误时遇到的问题:

Assertion failure in -[UITableViewRowData rectForRow:inSection:heightCanBeGuessed:] Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'request for rect at invalid index path (<NSIndexPath: 0xc000000000000016> {length = 2, path = 0 - 0})'

我使用

明确设置了我的行高

tableView.rowHeight = 140

我的删除代码如下

func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {

    let deleteAction = UITableViewRowAction(style: .destructive, title: "Delete") { (action, indexPath) in
        let object = self.datastore[indexPath.row]

        do {
            try self.realm?.write {
                self.realm?.delete(object)

                    self.datastore.remove(at: indexPath.row)
                    self.tableView.deleteRows(at: [indexPath], with: .none)
            }

        } catch let error {

        }
    }
    deleteAction.backgroundColor = .red

    return [deleteAction]
}

这确实从数据存储中正确删除了项目。我在这里尝试了多种不同的解决方案,例如在 mainThread 上调用删除,重新加载整个数据源等,但它仍然崩溃。

我的 numberOfRowsInSection 方法被调用并且是 return 删除后的正确行数,因此这似乎不是问题所在。

添加一个通用异常断点,虽然我认为它在这里崩溃

      func tableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) {
    if let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as? Cell {
        cell.image.kf.cancelDownloadTask()
    }
}

kf 这里是 kingfisher 库,因为如果单元格被删除我想取消图像下载

我注意到如果我使用

  `tableView.dequeueReusableCell(withIdentifier: "Cell")`

而不是 tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)

这不会崩溃,所以这可能是我的解决方案,但我很想知道这里出了什么问题。我知道 'forIndexPath' 方法应该始终 return 一个单元格,但在这种情况下由于 nil 而崩溃。

我在另一个 viewController 中有相同的删除代码,它不依赖于 didEndDisplaying:Cell 方法并且不会崩溃

您需要在 didEndDisplaying 中更改此行。您需要获取现有单元格。

let cell = tableView.cellForRowAtIndexPath(indexPath) 

我有一个非常相似的问题。

确保在删除单元格时,您的目标不是删除整个部分。我的 tableView 是基于不同长度的部分而不是行构建的。

我发现通过替换

tableView.deleteRows(at: [indexPath], with: .automatic

与:

tableView.deleteSections(IndexSet(integer: indexPath.section), with: .automatic)

我能够修复该错误。 但在实施此更改之前,请确保您要删除整个部分!

希望这对您有所帮助,干杯:)