UIViewControllerHierarchyInconsistency al intentar presentar un controlador de vista modal

Intentando presentar un controlador de vista modal con el siguiente código

MapViewController *mapView = [[MapViewController alloc] initWithNibName:@"MapViewController" bundle:nil];
    mapView.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
    [self.navigationController presentModalViewController:mapView animated:YES];
    [mapView release];

Sigue recibiendo el siguiente error ...

'UIViewControllerHierarchyInconsistency', reason: 'A view can only be associated with at most one view controller at a time! View <UIView: 0x1ed815a0; frame = (0 20; 320 460); autoresize = W+H; layer = <CALayer: 0x1ed81600>> is associated with <UIViewController: 0x1ed835a0>. Clear this association before associating this view with <MapViewController: 0x1dd947c0>.'

Este es un proyecto antiguo que no he tocado en meses, me pregunto qué podría causar tal error.

Respuestas a la pregunta(5)

Su respuesta a la pregunta