UIImageビューを持つUITableViewのセルを削除しています。スワイプして削除ボタンを削除すると、UIViewの後ろにあり、UIViewが削除ボタンの後ろにあると見栄えがよくなります。ボタンのレイヤー設定を一番上に設定する方法はありますか?
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
NSManagedObjectContext *context = [self.fetchedResultsController managedObjectContext];
[context deleteObject:[self.fetchedResultsController objectAtIndexPath:indexPath]];
//Deletes view from cell
for (UIView *subview in [self.view subviews]) {
if (subview != self.tableView) {
[subview removeFromSuperview];
}
}
NSError *error = nil;
if (![context save:&error]) {
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}
}
[self performFetch];
}