码迷,mamicode.com
首页 > 其他好文 > 详细

更新、插入tableview某一行数据或section数据

时间:2015-07-30 21:32:17      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:uitableview   insert   row   section   reload   

一、刷新列表

当tableview的某一行数据修改后,需要更新该条数据。这时有两种方法刷新:

(1)刷新整个列表 ,即[self.tableView reloadData]; 

(2)只刷新被改变的这一行。当然这种方法比第一种方法更高效。

具体代码:

  NSIndexPath *refreshCell = [NSIndexPath indexPathForRow:3 inSection:0];

    [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:refreshCell, nil] withRowAnimation:UITableViewRowAnimationNone];

 

        二、插入一行数据数据

NSIndexPath *refreshCell = [NSIndexPath indexPathForRow:3 inSection:0];

  NSArray *insertIndexPaths = [NSArray arrayWithObjects:refreshCell,nil];

    //同样,将数据加到数据列表中

      [_meterModelArray insertObject:device atIndex:i+1];

    [self.tableView insertRowsAtIndexPaths:insertIndexPaths withRowAnimation:UITableViewRowAnimationRight];

三、刷新某个Section的数据

  NSIndexSet *refreshSection=[[NSIndexSet alloc]initWithIndex:1];//刷新第二个section

    [self.tableView reloadSections:refreshSection withRowAnimation:UITableViewRowAnimationAutomatic];

      四、插入一个section数据

根据上面的一样,改一下就可以,就不再写了。


   

版权声明:本文为博主原创文章,未经博主允许不得转载。

更新、插入tableview某一行数据或section数据

标签:uitableview   insert   row   section   reload   

原文地址:http://blog.csdn.net/lijuan3203/article/details/47152579

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!