Error interno del compilador: error del bus

Estoy tratando de hacer un UITableView con una vista con detalles, pero obtengo dos errores. Después del siguiente código, obtuve dos veces los mismos errores: 'Error interno del compilador: error del bus' y no tengo idea de por qué. ¿Alguien me puede ayudar? Puede encontrar una imagen del código enaqu.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

NSInteger row = [indexPath row];
if (self.verwaltungDetailViewController == nil){
    verwaltungDetailViewController *aVerwaltungDetail = [[verwaltungDetailViewController alloc] initWithNibName:@"VerwaltungDetailView" bundle:nil];
    self.verwaltungDetailViewController = aVerwaltungDetail;
    [aVerwaltungDetail release];

}
verwaltungDetailViewController.title =  [NSString stringWithFormat:@"%@", [verwaltungsArray objectAtIndex:row]];



NatersAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
[delegate.VerwaltungNavController pushViewController:verwaltungDetailViewController animated:YES];

}

¡De antemano muchas gracias por tu ayuda

Respuestas a la pregunta(1)

Su respuesta a la pregunta