Skip to content

Instantly share code, notes, and snippets.

@vanderlin
Created May 14, 2014 19:57
Show Gist options
  • Save vanderlin/122b27e7d4e552468c53 to your computer and use it in GitHub Desktop.
Save vanderlin/122b27e7d4e552468c53 to your computer and use it in GitHub Desktop.
[super viewDidLoad];
[self.navigationController.navigationBar setBackgroundImage:[UIImage alloc] forBarMetrics:UIBarMetricsDefault];
[self.navigationController.navigationBar setShadowImage:[UIImage alloc]];
self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
self.navigationController.navigationBar.titleTextAttributes = @{NSFontAttributeName:[UIFont fontWithName:APP_FONT_MARK_OT_BOLD size:15], NSForegroundColorAttributeName:[UIColor whiteColor]};
// this is kinda a hack...
UIBarButtonItem *backButton = [[UIBarButtonItem alloc]
initWithTitle: @""
style: UIBarButtonItemStyleBordered
target: nil action: nil];
[self.navigationItem setBackBarButtonItem: backButton];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment