У меня возникают некоторые проблемы при удалении последней строки моего (только) раздела в tableView
. Любая другая строка отлично работает, но если я удалю строку в нижней части моего tableView
в любое время (не только в том случае, если она осталась последней), анимация будет очень странной и лагированной. Это просто не выглядит правильным. Я также заметил, что изменение типа анимации ничего не делает. Анимация всегда, когда строка скользит вверх и исчезает. Изменение его на UITableViewRowAnimationFade
или другое не делает ничего.
Вот мой код
//For the edit barButtonItem in my storyboard
- (IBAction)editButtonPressed:(id)sender {
//enter editing mode
if ([self.editButton.title isEqualToString:@"Edit"]) {
[self setEditing:YES animated:YES];
self.editButton.title = @"Done";
} else {
[self setEditing:NO animated:YES];
self.editButton.title = @"Edit";
}
}
//Editing the tableView. The user can only delete rows, not add any
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
return UITableViewCellEditingStyleDelete;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
// If row is deleted, remove it from the list.
if (editingStyle == UITableViewCellEditingStyleDelete) {
//Handle the data source and backend first, then the tableView row
PFRelation *hasFavorites = [self.currentUser relationforKey:@"hasFavorites"];
[hasFavorites removeObject:[self.favorites objectAtIndex:indexPath.row]];
[self.favorites removeObjectAtIndex:indexPath.row];
//It is set to fade here, but it only ever does the top animation
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
//save to the backend
[self.currentUser saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
if (!error) {
} else {
NSLog(@"%@ %@", error, error.userInfo);
}
}];
}
}
Я посмотрел на каждый ответ, который я могу найти без везения. Я возвращаю 1 в моем numberOfSections
в tableView
, потому что мне нужен только один раздел, и я должен иметь 0 строк в секции, поэтому я не думаю, что проблема.