I have a navigation based app with 2 controllers: vA and vB.
vA is the navigation controller's root view controller and it is a full screen controller, so when this controller is being shown, the navigation bar is hidden.
Then I push vB using
[self.navigationController pushViewController:vB animated:YES];
On vB's viewDidLoad I have this:
self.navigationController.navigationBarHidden = NO;
// then I have navigation buttons defined here
The animation of vB entering the screen from the right happens this way:
- the navigationBar suddenly appears on vA
- vB slides from the right and fills the screen.
when I pop vB out, this is what happens
- vB slides to the left showing vA behind.
- at this time, we see vA with the navigationBar visible on top. Remembers vA should have no navigation bar visible. Then, that navigation vanishes and vA resizes to full screen.
this animation has no grace, is terrible, clunky and wrong.
What I want is this: the navigation slides in and out together with vB.
how do I do that?
thanks.
