Hi,
I'm currently working on an update to one of my apps and I have come across a very strange issue to do with UITabBarController.
In my storyboard I have about 8 view controllers and in my UITabBarController subclass I add another 4 view controllers that are loaded programmatically. Most of these views need to have to UINavigationController to keep consistency when rotating as some views come out from the "More" tab into the main bar, in order to do this I have embeded them in a UINavigationController.
If you choose view 6 in portrait and the rotate the UINavigationController goes black when the view gets its own button in the tab bar, however when it returns to "more" the view comes back. In my investigation of these it seems that the UINavigationController losses the UIViewController as it root view controller.
Working as expected on a view that does not enter the "More" tab: http://imgur.com/gVB8***
Black screen if the view came from the "More" tab: http://imgur.com/WaoNoL1
I made a quick sample project that has this issue: https://github.com/joshluongo/UITabBarController-Issues
Is this a PEBCAC or is this a bug?