Skip to content

Instantly share code, notes, and snippets.

@michaelevensen
Last active June 14, 2024 06:36
Show Gist options
  • Save michaelevensen/1261a9838f5c4e49b15b83412eaada5a to your computer and use it in GitHub Desktop.
Save michaelevensen/1261a9838f5c4e49b15b83412eaada5a to your computer and use it in GitHub Desktop.
Globally remove bottom shadow for UINavigationBar and add Custom Back Button Image.
// Good place to place this is AppDelegate.didFinishLaunchingWithOptions()
// Remove Bottom Shadow
UINavigationBar.appearance().shadowImage = UIImage()
UINavigationBar.appearance().setBackgroundImage(UIImage(), for: .default)
// Custom Back Button Image
let backButtonImage = UIImage(named: "back_button")
UINavigationBar.appearance().backIndicatorImage = backButtonImage
UINavigationBar.appearance().backIndicatorTransitionMaskImage = backButtonImage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment