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

时间:2020-11-25 15:04:18

一、刷新列表

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

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

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

具体代码:

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

    [self.tableViewreloadRowsAtIndexPaths:[NSArrayarrayWithObjects:refreshCell,nil] withRowAnimation:UITableViewRowAnimationNone];

 

         二、插入一行数据数据

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

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

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

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

    [self.tableViewinsertRowsAtIndexPaths:insertIndexPathswithRowAnimation:UITableViewRowAnimationRight];

三、刷新某个Section的数据

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

    [self.tableViewreloadSections:refreshSection withRowAnimation:UITableViewRowAnimationAutomatic];

      四、插入一个section数据

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