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

一、刷新列表

当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数据

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


   

你可能感兴趣的:(iOS)