Skip to content

Instantly share code, notes, and snippets.

@dbgarcia
Created December 19, 2017 02:49
Show Gist options
  • Select an option

  • Save dbgarcia/adac27f180583b9cbd25e27f5b833d69 to your computer and use it in GitHub Desktop.

Select an option

Save dbgarcia/adac27f180583b9cbd25e27f5b833d69 to your computer and use it in GitHub Desktop.
import UIKit
extension UINavigationController {
func transparentNavBar() {
self.navigationBar.setBackgroundImage(UIImage(), for: .default)
self.navigationBar.shadowImage = UIImage()
self.navigationBar.isTranslucent = true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment