is is possible to pop a view off the navigation stack and then push another straight onto it?
I'm trying to implement a flat hierarchy for this section and would like to have a segmented controller but I can't make the segmented controller look anything liked I want, hence why I'm trying to use the navigation controller.
When a button is clicked I executed this code:
[[self navigationController] popViewControllerAnimated:YES];
MapsViewController *aViewController = [[MapsViewController alloc]
initWithNibName:@"MapsViewController" bundle:nil];
[self.navigationController pushViewController:aViewController animated:NO];
[aViewController release];
It's popping off ok but theres no sign of any pushing! Any help would be appreciated.
Swift 4 :
self.navigationController.setViewControllers[]..
doesn't worked out for me. But I am able to solve the issue by holding a navigation controller in an instance variable and do push/pop operation. Thus, silently able to change controller without glitch.Swift 3.0
In case someone wants to go deep into the view hierarchy:
Or
You can use this code to pop or push your controller.
For objective c
For Swift
Taken from https://stackoverflow.com/users/1619554/tomer-peled 's solution, so others can find it more easily.
This appears to be the best way to do it for iOS8: