Skip to content

Instantly share code, notes, and snippets.

@apple-avadhesh
Created February 16, 2023 07:32
Show Gist options
  • Save apple-avadhesh/e3e1dc363d3fa3dd5f9492784588d913 to your computer and use it in GitHub Desktop.
Save apple-avadhesh/e3e1dc363d3fa3dd5f9492784588d913 to your computer and use it in GitHub Desktop.
NavBarBackgroundColor in Objective-C [iOS 16]
UINavigationBarAppearance *navBarAppearance = [[UINavigationBarAppearance alloc] init];
[navBarAppearance configureWithOpaqueBackground];
[navBarAppearance setBackgroundColor:[UIColor redColor]];
[UINavigationBar appearance].standardAppearance = navBarAppearance;
[UINavigationBar appearance].scrollEdgeAppearance = navBarAppearance;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment