Редактирование UITableView на месте: добавление сбоя строки
Моя таблица использует редактирование и добавление на месте. Новая строка добавляется при нажатии кнопки редактирования, и эта новая строка может быть отредактирована и зафиксирована. При фиксации новой строки в табличном представлении добавляется новая строка, и пустая ячейка перемещается вниз, что впоследствии может быть отредактировано, а другая строка добавлена снова. Однако при попытке добавить еще одну строку во время того же сеанса редактирования я получаю сообщение об ошибке:
*** Assertion failure in -[UITableView _endCellAnimationsWithContext:]
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException',
reason: 'attempt to insert row 2 into section 0, but there are only 2 rows in section 0 after the update'
Я получал эту ошибку раньше, когда добавлял только одну строку, но после изучения учебника по редактированию на месте я думал, что я решил ее. Вот некоторые соответствующие методы:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
int count = [items count];
if(self.editing)count++;
return count;
}
- (void)setEditing:(BOOL)editing animated:(BOOL)animated
{
[super setEditing:editing animated:animated];
[keyphraseTextField setEnabled:YES];
NSArray *paths = [NSArray arrayWithObject:
[NSIndexPath indexPathForRow:[items count] inSection:0]];
if (editing)
{
[[self tableView] insertRowsAtIndexPaths:paths
withRowAnimation:UITableViewRowAnimationTop];
}
else {
[[self tableView] deleteRowsAtIndexPaths:paths
withRowAnimation:UITableViewRowAnimationTop];
}
}
- (void)tableView:(UITableView *)tableView
commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
[self deleteItemAtIndexPath:indexPath];
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
NSIndexPath *thePath = [NSIndexPath indexPathForRow:[items count] inSection:0];
DBAccess *dbaccess = [[DBAccess alloc] init];
NSInteger keyphraseCount = [dbaccess getDomainKeyphraseCount:domain_id];
NSInteger keyphraseCountLimit = [dbaccess getDomainKeyphraseCountLimit:domain_id];
[dbaccess closeDatabase];
[dbaccess release];
if(![keyphraseTextField.text isEqualToString:@""] && keyphraseCount<keyphraseCountLimit){
[self insertItemAtIndexPath:thePath];
[self readItems];
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:thePath] withRowAnimation:UITableViewRowAnimationLeft];
[self makeNSURLConnection];
}else{
if([keyphraseTextField.text isEqualToString:@""]){
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"Please insert Keyphrase." delegate:self cancelButtonTitle:@"Not Now." otherButtonTitles:@"Upgrade!", nil];
[alert setTag:10];
[alert show];
[alert release];
}
if(keyphraseCount>=keyphraseCountLimit){
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"Kindly upgrade your subscription to add more keyphrases!" delegate:self cancelButtonTitle:@"Not Now." otherButtonTitles:@"Upgrade!", nil];
[alert setTag:10];
[alert show];
[alert release];
}
}
}
}
- (UITableViewCellEditingStyle)tableView:(UITableView *)aTableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
if (self.editing == NO || !indexPath) return UITableViewCellEditingStyleNone;
if (self.editing && indexPath.row == ([items count])) {
return UITableViewCellEditingStyleInsert;
} else {
return UITableViewCellEditingStyleDelete;
}
return UITableViewCellEditingStyleNone;
}
Как я могу решить эту проблему, чтобы пользователь мог добавить строку за строкой в одной "сессии" редактирования?
2 ответа
В конце концов мне пришлось многое изменить и добавить ручной подсчет для количества строк в tablview, которое менялось после каждого обновления. Это не то, как я люблю кодировать, но это работает, и я не мог понять, что происходит не так.
Вы должны поместить строки вставки / удаления / выбора между [self.tableview beginUpdates];
а также [self.tableview endUpdates];