我想将 UITableViewRowAnimation 与 :reloadData 一起使用。
在我使用该示例进行表加载之前(我在一些 ios 开发指南中发现):
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];
}
但是这种方式在大数据上似乎真的很慢,那么如何快速加载带有动画的表格视图呢?