Сбой таблицы при удалении строки? - PullRequest
0 голосов
/ 04 сентября 2011

У меня сбой при удалении ячейки из таблицы.Я использую NSMutableArray, загруженный из NSUserDefaults, чтобы загрузить ячейки в табличное представление.Это сбой: Код:

2011-09-03 18:21:06.097 App[10356:707] *** Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit/UIKit-1906/UITableView.m:1046
2011-09-03 18:21:06.100 App[10356:707] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 0.  The number of rows contained in an existing section after the update (3) must be equal to the number of rows contained in that section before the update (3), plus or minus the number of rows inserted or deleted from that section (0 inserted, 1 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'

Вот как я удаляю строки ... Код:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    [self.cellArray objectAtIndex:indexPath.row];
    [tableView deleteRowsAtIndexPaths:[NSMutableArray arrayWithObject:indexPath] withRowAnimation:YES];
    [[NSUserDefaults standardUserDefaults] setObject:cellArray forKey:@"cellArray"];
}

Это мой numberOfRowsInSection метод делегата: Код: //Настройте количество строк в табличном представлении.

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    self.cellArray = [NSMutableArray array];
    [self.cellArray addObjectsFromArray:[[NSUserDefaults standardUserDefaults] objectForKey:@"cellArray"]];

    if ([self.cellArray count] == 0) {
        [ivstatstableView setHidden:YES];
        [sortbar setEnabled:NO];
    }
    return [cellArray count];
}

Есть идеи, что здесь не так?

1 Ответ

1 голос
/ 04 сентября 2011

Вам нужно вызвать reloadData после удаления объекта из вашего массива. Когда вы вызываете метод reloadData, ваш новый массив обновляется, что позволяет UITableView загружать новые ячейки на основе новых обновленных данных.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...