有没有办法在现有行的顶部插入行,以便最新的数据显示在最顶行?谢谢!
答案 0 :(得分:2)
是的,你可以使用
insertRowsAtIndexPaths:withRowAnimation:
在UITableView对象上调用此方法,如此
[self.tableview insertRowsAtIndexPaths:indexPath withRowAnimation:YES ];
其中indexPath包含行号(您希望放置单元格的位置)
NSArray *indexPath = [NSArray arrayWithObject:[NSIndexPath indexPathForRow:2 inSection:0]];