Skip to content

Instantly share code, notes, and snippets.

@srstanic
Last active July 26, 2021 10:51
Show Gist options
  • Select an option

  • Save srstanic/7c33b3d2ed8d7a6c91a4ec824a6030df to your computer and use it in GitHub Desktop.

Select an option

Save srstanic/7c33b3d2ed8d7a6c91a4ec824a6030df to your computer and use it in GitHub Desktop.
A UITabBarController with the invisible tabbar.
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