I have an iOS 5 Tabbed Application, using Storyboards.
My Tabbar Controller points to three Navigation Controllers.
From one of them, the flow looks like this:
Start view --> Photo view (modal) --> Catalog view
On the photo screen, I have a button with the following code:
- (IBAction)acceptPhotoButtonPressed:(id)sender {
UIViewController *catalogView = [self.storyboard instantiateViewControllerWithIdentifier:@"CatalogView"];
[self.navigationController pushViewController:catalogView animated:YES];
}
I've tried fooling around with presentingViewController, parentViewController - even type casted those to a UINavigationController. That causes it to crash, with the following error message:
2012-04-06 00:32:45.808 myapp[19345:707] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UITabBarController pushViewController:animated:]: unrecognized selector sent to instance 0x18d0d0'
So that tells me that I haven't got hold of a UINavigationController, but a UITabBarController.
Is there any way around this?