Skip to content

Instantly share code, notes, and snippets.

@MaximAlien
Created December 10, 2015 15:16
Show Gist options
  • Save MaximAlien/053d7e6c5127718c93b3 to your computer and use it in GitHub Desktop.
Save MaximAlien/053d7e6c5127718c93b3 to your computer and use it in GitHub Desktop.
[iOS] Back button on navigation bar without text
- (void)viewDidLoad
{
[super viewDidLoad];
[self.navigationController.navigationBar setTintColor:[UIColor whiteColor]];
self.navigationController.navigationBar.topItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"" style:UIBarButtonItemStylePlain target:nil action:nil];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment