Skip to content

Instantly share code, notes, and snippets.

@kenmaready
Last active July 30, 2022 13:06
Show Gist options
  • Save kenmaready/c61a801b677eede59f28029c8fe3f68d to your computer and use it in GitHub Desktop.
Save kenmaready/c61a801b677eede59f28029c8fe3f68d to your computer and use it in GitHub Desktop.
Change color of nav bar and status bar inside viewDidLoad in iOS Apps
// inside viewDidLoad() or wherever you set appearance of your navigation bar:
let appearance = UINavigationBarAppearance()
appearance.configureWithTransparentBackground()
appearance.backgroundColor = UIColor.systemBlue
appearance.titleTextAttributes = [.foregroundColor: UIColor.white]
navigationItem.standardAppearance = appearance
navigationItem.scrollEdgeAppearance = appearance
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment