Skip to content

Instantly share code, notes, and snippets.

@Hadevs
Last active April 5, 2021 09:04
Show Gist options
  • Save Hadevs/3bdda12b6e4c12d2d3f3964959822bd4 to your computer and use it in GitHub Desktop.
Save Hadevs/3bdda12b6e4c12d2d3f3964959822bd4 to your computer and use it in GitHub Desktop.
Make UINavigationBar Clear
extension UINavigationBar {
func makeClear() {
backgroundColor = .clear
setBackgroundImage(UIImage(), for .default)
shadowImage = UIImage()
}
}
// USAGE
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
navigationController?.navigationBar.makeClear()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment