-
Notifications
You must be signed in to change notification settings - Fork 22
Description
First of all, thanks a lot for making this solution available. I'm in the process of integrating it into our app, and so far your solution is much cleaner than our old hack, and has fixed a number of bugs were having trouble with.
One problem I have run into though, is that when the number of tabs increases beyond capacity of the tab bar, forcing entries onto the "More..." tab, we can no longer open the entries containing split views. When we try, we get an error similar to:
"Split View Controllers cannot be pushed to a Navigation Controller <UIMoreNavigationController: 0x93b6950>"
I believe it happens because the "More..." tab wraps each entry in a navigation controller, so that the user get's a nice "back" button to the "More..." tab after selecting an entry. And of course, the default UISplitViewController doesn't like that.
Have you found a solution to the problem, or do you have any suggestions for making it work?
Thanks again.