需要应用程序动态地向TableView添加行。如何实现?
这似乎不起作用:
NSIndexPath *path = [[NSIndexPath alloc]initWithIndex:(rowCount - 1)];
[self.tableView insertRowsAtIndexPaths:
[NSArray arrayWithObject:path] withRowAnimation:UIViewAnimationCurveEaseIn];
答案 0 :(得分:0)
看看:
-(void)insertRowsAtIndexPaths:(NSArray *)indexPaths
withRowAnimation:(UITableViewRowAnimation)animation
如果你想等一会儿写这个问题,你会看到很多 对类似问题的建议。