私は編集可能なtableViewを持っていますが、私のメソッドの最後のオブジェクトを削除することはできません:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView beginUpdates];
if (editingStyle == UITableViewCellEditingStyleDelete)
{
[self deletePermittedFriend:[friendsIDs objectAtIndex:indexPath.row]];
[tableDataList removeObjectAtIndex:indexPath.row];
}
[tableView endUpdates];
}
tableDataList MutableArray に最後のオブジェクトが 1 つしかない場合、エラーが発生します。
* -[UITableView _endCellAnimationsWithContext:]、/SourceCache/UIKit/UIKit-2380.17/UITableView.m:1070 2013-05-21 11:41:47.306 EzMall[3398:907] でのアサーションの失敗'、理由: '無効な更新: セクション 0 の行数が無効です。更新後の既存のセクションに含まれる行数 (0) は、更新前にそのセクションに含まれる行数 (1) と等しくなければなりません。そのセクションから挿入または削除された行数 (0 挿入、0 削除) のプラスまたはマイナス、およびそのセクションに移動された、またはセクションから移動された行数 (0 移動、0 移動)。