Skip to content

Instantly share code, notes, and snippets.

@ramakser
Last active July 19, 2016 08:36
Show Gist options
  • Save ramakser/7c1672a2062b2a5408de0b58dfc2db07 to your computer and use it in GitHub Desktop.
Save ramakser/7c1672a2062b2a5408de0b58dfc2db07 to your computer and use it in GitHub Desktop.
self.navigationController?.navigationBar.translucent = false
guard let subviews = self.navigationController?.navigationBar.subviews else { return }
for parent in subviews {
for childView in parent.subviews {
if(childView is UIImageView) {
childView.removeFromSuperview()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment