UITabBar inside UINavigationController using storyboard

This is an extension of a two-year question: how do you implement a UITabBar inside a UINavigationController?

Robert Comte's handbook is outstanding, and I can follow it for the most part. The trouble is that, as I said, he is from two to three years old. Since then, the storyboard has been introduced, and I would like to minimize the use of individual .xib files. Here are my efforts to adapt it:

UITabBar + UINavigationController

All frames are subclasses of the UIViewController. When I run this, it works until the table cell is selected. The tab tab you have in your favorites is completely black and there is no tab bar. Obviously, I cannot post all the code, but based on these symptoms, what am I missing?

+3
1

, prepareForSegue:sender: ? , segue.destinationViewController. AFAIK, UITabBarController UINavigationController, .

+1

All Articles