テーブルビューに行を追加する方法について少し混乱しています。
定期的に値を追加する配列があります。次のコード行を使用して、新しい値が配列に追加されるたびに行数を更新しようとしています。
// listOfMembers if a
[[self tableView] beginUpdates]; [tableView numberOfRowsInSection:[listOfMembers count]];
[[self tableView] endUpdates];
[[self tableView] beginUpdates];
[tableView reloadRowsAtIndexPaths:[tableView indexPathsForVisibleRows] withRowAnimation:UITableViewRowAnimationNone];
[[self tableView] endUpdates];
ただし、これは行数を変更するためには機能しません。テーブルがどのように更新されるかを誤解している可能性があります。このエラーが発生します:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (5) must be equal to the number of rows contained in that section before the update (4), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'
クラッシュが発生しています:
[tableView reloadRowsAtIndexPaths:[tableView indexPathsForVisibleRows] withRowAnimation:UITableViewRowAnimationNone];
テーブルビューを明確に更新するにはどうすればよいですか。これは間違った方法で行っています。