我正在尝试在表格的开头插入一行,但我想保持以前内容的位置(类似于加载更多推文时的 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];
}