iOS 11 / Xcode 9: el fondo blanco UITableViewCell parpadea al eliminar

En el dispositivo iOS 11 al eliminar un UITableViewCell, aparece un fondo blanco inesperado por alguna razón, sin embargo, todos los colores de fondo están configurados en azul en el guión gráfico (funciona bien en iOS10).

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
        [self.bookmarks removeObjectAtIndex:indexPath.row];            
        [self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
    }
}

Probé todo tipo deUITableViewRowAnimation, no resuelve el problema.

Respuestas a la pregunta(4)

Su respuesta a la pregunta