如何动态地向UITableView添加行?

时间:2012-01-24 08:10:32

标签: objective-c ios uitableview

需要应用程序动态地向TableView添加行。如何实现?


这似乎不起作用:

NSIndexPath *path = [[NSIndexPath alloc]initWithIndex:(rowCount - 1)]; 
[self.tableView insertRowsAtIndexPaths:
    [NSArray arrayWithObject:path] withRowAnimation:UIViewAnimationCurveEaseIn]; 

1 个答案:

答案 0 :(得分:0)

看看:

-(void)insertRowsAtIndexPaths:(NSArray *)indexPaths     
       withRowAnimation:(UITableViewRowAnimation)animation

如果你想等一会儿写这个问题,你会看到很多 对类似问题的建议。