Last active
July 26, 2021 10:51
-
-
Save srstanic/7c33b3d2ed8d7a6c91a4ec824a6030df to your computer and use it in GitHub Desktop.
A UITabBarController with the invisible tabbar.
This file contains hidden or 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
| class NakedTabBarContorller: UITabBarController { | |
| override func viewDidLoad() { | |
| super.viewDidLoad() | |
| self.tabBar.isHidden = true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment