Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vinhnx/6655961 to your computer and use it in GitHub Desktop.
Save vinhnx/6655961 to your computer and use it in GitHub Desktop.
// cheers to @stroughtonsmith for helping out with this one
UIColor *barColour = [UIColor colorWithRed:0.13f green:0.14f blue:0.15f alpha:1.00f];
UIView *colourView = [[UIView alloc] initWithFrame:CGRectMake(0.f, -20.f, 320.f, 64.f)];
colourView.opaque = NO;
colourView.alpha = .7f;
colourView.backgroundColor = barColour;
self.navigationBar.barTintColor = barColour;
[self.navigationBar.layer insertSublayer:colourView.layer atIndex:1];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment