6

tvOS 13 introduces a completely new default UI for UITabBarController.

Is it possible to use the default UI of UITabBarController that was in previous versions of tvOS, 9-12, in a tvOS 13 application compiled with Xcode 11?

tvOS 9-12 UITabBarController (Desired UI): enter image description here

tvOS 13 UITabBarController: enter image description here

Daniel Storm
  • 18,301
  • 9
  • 84
  • 152

1 Answers1

0

If you are talking abut the "always on top" behaviour of the new UI then you can change this by using:

var tabBarObservedScrollView: UIScrollView? { get set }
  • This doesn’t account for hitting the menu button and having the tab bar appear. Using this will scroll to top when menu is pressed. – Daniel Storm Sep 28 '19 at 14:08