Last active
February 29, 2020 10:58
-
-
Save bergusman/04d5dbcd8f12d15e6c6db8dda82857ab to your computer and use it in GitHub Desktop.
Fully transparent UITabBar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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