Skip to content

Instantly share code, notes, and snippets.

@bergusman
Last active February 29, 2020 10:58
Show Gist options
  • Save bergusman/04d5dbcd8f12d15e6c6db8dda82857ab to your computer and use it in GitHub Desktop.
Save bergusman/04d5dbcd8f12d15e6c6db8dda82857ab to your computer and use it in GitHub Desktop.
Fully transparent UITabBar
if #available(iOS 13.0, *) {
tabBar.standardAppearance.configureWithTransparentBackground()
} else {
tabBar.backgroundImage = UIImage()
tabBar.shadowImage = UIImage()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment