UITableView的cell表格刷新(增長,刪除,修改)

UITableView刪除

1.刪除步驟(add,update are the same)

  • 刪除對應行模型數據
  • 讓tableView從新加載數據源

2.具體代碼(按標題1的步驟來寫代碼)

  • 刪除對應行模型數據git

     

-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{ [self.tuangous removeObjectAtIndex:indexPath.row]; [tableView reloadData]; }github

* 讓tableView從新加載數據源

```objc
-(void) tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
 [self.tuangous removeObjectAtIndex:indexPath.row];
 [tableView reloadData];
}

3.代碼地址

相關文章
相關標籤/搜索