テーブルの先頭に行を挿入しようとしていますが、以前のコンテンツの位置を維持したい (より多くのツイートを読み込むときの Twitter アプリに似ています)、現時点では次のコードを使用しています:
- (void) insertObject: (id) object
{
[_objects insertObject: object atIndex: 0];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:index inSection:0];
[[self tableView] insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}