当删除单行Cell Crash
tableView.deleteRows(at: [indexPath], with: .none)
解决方法
tableView.beginUpdates()
self?.models.remove(at: indexPath.row)
tableView.deleteRows(at: [indexPath], with: .none)
tableView.endUpdates()
当删除单行Cell Crash
tableView.deleteRows(at: [indexPath], with: .none)
解决方法
tableView.beginUpdates()
self?.models.remove(at: indexPath.row)
tableView.deleteRows(at: [indexPath], with: .none)
tableView.endUpdates()