Back button not appearing on UINavigationController
I have a UINavigationController setup in my AppDelegate: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Add the navigation controller's view to the window and display. [self.window addSubview:navigationController.view]; [self.window makeKeyAndVisible]; return YES; } In my RootViewController I am pushing another view onto the stack: //Show the deals DealViewController *dvc = [[DealViewController alloc] initWithNibName:@"DealViewController" bundle:nil]; [self.navigationController.navigationBar setHidden:NO]; [self