Ich arbeite an iOS 6. Meine Anwendung verfügt über einen Standard-Navigation-Controller mit einem CustomViewController eingebettet. In diesem Controller erstelle ich eine modale Ansicht wie folgt aus:Seltsames Warning Modal Ansicht Controller
-(IBAction)presentModalList:(id)sender {
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
StationsListViewController *list = [storyboard instantiateViewControllerWithIdentifier:@"StationsListViewController"];
[list setStationsData: [self.stationsData allValues]];
[self presentModalViewController:list animated:YES];
}
Die Show modal Controller perfekt aber entlasse gibt eine Warnung aus. Das Verfahren in diesem Controller entlassen ist:
-(IBAction)backToMap
{
[self dismissModalViewControllerAnimated:YES];
}
Die Warnung erzeugt wird, Warnung:
Versuch von View-Controller < UINavigationController zu entlassen: 0x1ed91620> während einer Präsentation oder im Gange ist zu entlassen!
Irgendwelche Hinweise dazu?
Dank
Verwandte - http: // Stackoverflow. com/questions/1412021/iphone-crashing-wenn-presenting-modal-view-controller – ChrisF