刪除對應行模型數據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]; }