删除对应行模型数据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]; }