Skip to content

Instantly share code, notes, and snippets.

@uberbruns
Created October 18, 2013 19:22
Show Gist options
  • Save uberbruns/7046720 to your computer and use it in GitHub Desktop.
Save uberbruns/7046720 to your computer and use it in GitHub Desktop.
A simple way to remove the backBarButtonTitle on iOS7.
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
UIBarButtonItem * barButton = [[UIBarButtonItem alloc] init];
barButton.title = @"";
self.navigationItem.backBarButtonItem = barButton;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment