:reloadData で UITableViewRowAnimation を使用したい。
テーブルの読み込みにその例を使用する前に (いくつかの ios dev ガイドで見つけました):
for (NSDictionary *entry in [dl reverseObjectEnumerator]) {
int insertIdx = 0;
[_allEntries insertObject:entry atIndex:insertIdx];
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:insertIdx inSection:0]]
withRowAnimation:UITableViewRowAnimationRight];
}
しかし、その方法はビッグデータでは非常に遅いようです。では、アニメーションでテーブルビューを高速にロードするにはどうすればよいでしょうか?