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
设置为nil值信令委托方法,它应该使用count + 1.但是它以同样的方式失败。
同样有趣的是,相同的代码但没有重新加载之前永远不会失败
editingIndexPath = IndexPath(row: indexPath.row + 1, section: 0)
if let editingIndexPath = editingIndexPath {
tableView.insertRows(at: [editingIndexPath], with: .top)
}
这里发生了什么?
答案 0 :(得分:0)
表视图的第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)
}
}
答案 1 :(得分:-3)
尝试在更新tableview之前重新加载tableview,并在结束tablewview更新后再次重新加载tableview。它将解决您的问题。
tableView.reloadData()
tableView.beginUpdates()
tableView.endUpdates()
tableView.reloadData()