Skip to content

Instantly share code, notes, and snippets.

@mudasir093
Created October 16, 2019 14:54
Show Gist options
  • Save mudasir093/44b1fbe7a6166530493bcea610b54358 to your computer and use it in GitHub Desktop.
Save mudasir093/44b1fbe7a6166530493bcea610b54358 to your computer and use it in GitHub Desktop.
Remove shadow Of UINavigationBar
extension UINavigationBar {
//Extension for Removing Shadow of UINavigationBar
func shouldRemoveShadow(_ value: Bool) -> Void {
if value {
self.setValue(true, forKey: "hidesShadow")
} else {
self.setValue(false, forKey: "hidesShadow")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment