Skip to content

Instantly share code, notes, and snippets.

@kwylez
Created October 26, 2010 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kwylez/647794 to your computer and use it in GitHub Desktop.
Save kwylez/647794 to your computer and use it in GitHub Desktop.
Force backbaritem to show
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
self.navigationItem.title = @"Back";
[self.navigationItem setHidesBackButton:YES animated:NO];
[self.navigationController.navigationBar setNeedsDisplay];
}
- (void)viewDidAppear:(BOOL)animated {
[self.navigationItem setHidesBackButton:NO animated:NO];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment