Created
May 14, 2014 19:57
-
-
Save vanderlin/122b27e7d4e552468c53 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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