I am working on a Navigation-Based Application. I have few View Controllers which I push in to Navigation Controller on different occasions. The following is the code I use to push new View Controller.
AnotherViewController *anotherViewController = [[AnotherViewController alloc] initWithNibName:@"AnotherView" bundle:nil];
[self.navigationController pushViewController:anotherViewController animated:YES];
[anotherViewController release];
One thing i noticed is that, when new view controller is pushed the navigation bar also animated (slided). I have a back button, title text and right button in navigation bar. So it look wiered when navigation bar is animated.
Is there any way around to keep the navigation bar fixed and the view is only animated when new view controller is pushed?