在UITableView中的当前行顶部插入行

时间:2011-01-18 05:18:29

标签: iphone objective-c uitableview insert

有没有办法在现有行的顶部插入行,以便最新的数据显示在最顶行?谢谢!

1 个答案:

答案 0 :(得分:2)

是的,你可以使用 insertRowsAtIndexPaths:withRowAnimation:

在所需函数的.m文件中的

在UITableView对象上调用此方法,如此

[self.tableview insertRowsAtIndexPaths:indexPath withRowAnimation:YES ];

其中indexPath包含行号(您希望放置单元格的位置)

NSArray *indexPath = [NSArray arrayWithObject:[NSIndexPath indexPathForRow:2 inSection:0]];