I'm using a UIScrollView to display some images, and i need to present or push another view when the user selects one part of the image.This ScrollView is created only programmatically. How i can programmatically add a navigationController to it and present another view?
I tried this way but just give me the following error :
Pushing a navigation controller is not supported'
StatesViewController * controller = [[StatesViewController alloc]initWithNibName:@"StatesViewController" bundle:nil];
UINavigationController * Navcontroller = [[UINavigationController alloc] initWithRootViewController:controller];
[self presentModalViewController: Navcontroller animated: YES];
UIScrollViewbeing created in? Surely it's being added as a subview of aUIViewalready contained in aUIViewController, or is being assigned as theviewof aUIViewController? Just change thatUIViewControllerso that it's wrapped in aUINavigationController, and you should then be able to push new view controllers on the stack. (You can even hide the navigation item of theUINavigationControlleron the first screen if you don't want users to see it.) – Craig Otis Sep 13 '12 at 18:46