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.
In Swift:
In case newVc exists in a Storyboard: