I'm using a UITabBarController inside of a UISplitViewController with an iPad. On iOS12 this works fine, with the tabbar controller collapsing into a 'More' tab.
Running the same code on iOS13 results in the tab bar controller not collapsing the views correctly, like this:
Edit / Update:
This is reproducible with the 'Master Detail' Xcode template. Without making modifications to the code, make the root view controller of 'Master' navigation controller a tab bar controller and add >6 tabs like so:
This leads me to believe it's not my own custom code that is the culprit, but rather something I don't understand about how UISplitViewControllers function within iOS13 specifically.
Has anyone run into this? I tried the solution from this question, but that unfortunately did not change anything.