I'm adapting Apple's DrillDownSave sample code, which let's you transition between views using a Navigation Controller.
What I want to do is have the first two screens NOT have the top bar. I can do that by putting this in the first two views 'viewWillAppear' method:
Code:
// turn off the navigationBar (top bar)
[[self navigationController] setNavigationBarHidden:YES animated:NO];
Great... no top bar. But now I am struggling to implement a button (UIButton) which will perform exactly the same function as the hidden UINavigationController back button. Any ideas?