iOS开发,点击按钮,tableviewcell动态增加一行,求指教 10

点一下按钮增加一行,估计是用tableViewinsertRowsAtIndexPaths方法做的很简单的一个功能,搞半天都没做出来,哎,谁能上一下完整代码呢?上片段代码... 点一下按钮增加一行,估计是用tableView insertRowsAtIndexPaths方法做的很简单的一个功能,搞半天都没做出来,哎,谁能上一下完整代码呢?上片段代码我怕我调不好,毕竟新手。合适加分 展开
 我来答
默默凝视那个人
2014-12-10 · TA获得超过225个赞
知道小有建树答主
回答量:384
采纳率:0%
帮助的人:315万
展开全部
-(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];
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式