试图从中删除一行UITableView
,一切正常,除非我删除最后一行(at index 0,0)
,在这种情况下,我收到一条错误消息
The number of sections contained in the table view after the update
(0) must be equal to the number of sections contained in the table
view before the update (1), plus or minus the number of sections
inserted or deleted (0 inserted, 0 deleted).'
这发生在它到达之后
[tableView endUpdates];
这是在删除行功能之后。
知道为什么该deleteRowsAtIndexPaths
功能不起作用吗?我检查了indexPath
它,它应该显示 0,0。
谢谢