Skip to content

Instantly share code, notes, and snippets.

@psobko
Last active June 22, 2016 20:19
Show Gist options
  • Save psobko/7552812 to your computer and use it in GitHub Desktop.
Save psobko/7552812 to your computer and use it in GitHub Desktop.
Hide navbar shadow
// hide shadow
id navBarAppearance = [UINavigationBar appearance];
[navBarAppearance setBackgroundImage:[UIImage new] forBarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault];
[navBarAppearance setShadowImage:[UIImage new]];
//custom title
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIFont
fontWithName:@"YOURFONT" size:14], NSFontAttributeName,
[UIColor whiteColor], NSForegroundColorAttributeName, nil];
[[UINavigationBar appearance] setTitleTextAttributes:attributes];
// white status bar text
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
//bg image
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navbar"] forBarMetrics:UIBarMetricsDefault];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment