iOS开发,点击按钮,tableviewcell动态增加一行,求指教 10
点一下按钮增加一行,估计是用tableViewinsertRowsAtIndexPaths方法做的很简单的一个功能,搞半天都没做出来,哎,谁能上一下完整代码呢?上片段代码...
点一下按钮增加一行,估计是用tableView insertRowsAtIndexPaths方法做的很简单的一个功能,搞半天都没做出来,哎,谁能上一下完整代码呢?上片段代码我怕我调不好,毕竟新手。合适加分
展开
1个回答
展开全部
-(IBAction)addRows:(id)sender{
NSMutableArray *indexPaths = [[NSMutableArray alloc] init];
for (int i=0; i<3; i++) {
NSString *s = [[NSString alloc] initWithFormat:@”hello %d”,i];
[datas addObject:s];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
[indexPaths addObject: indexPath];
}
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewScrollPositionNone];
[self.tableView endUpdates];
}
NSMutableArray *indexPaths = [[NSMutableArray alloc] init];
for (int i=0; i<3; i++) {
NSString *s = [[NSString alloc] initWithFormat:@”hello %d”,i];
[datas addObject:s];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
[indexPaths addObject: indexPath];
}
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewScrollPositionNone];
[self.tableView endUpdates];
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询