How to insert a UINavigationController inside a UITabBarController .
I currently have a main UITabBarController with a declaration inside the application delegate (so the main tab)
self.window.rootViewController = self.tabBarController;
And inside one of the tabs I want to insert a UINavigationController and cannot get it.
The code is constructed as follows:
MainWindow.xib with a UITabBarController object with a tab entered as UINavigationController (specify NavigationHistory.xib ) - screenshot: invalid linkNavigationHistory.xib contains only the UINavigationController where the viewpoint points to History.xibHistory.xib have only a UITableView element - screenshot: invalid link
And now the UIViewController does not display my view1, and I donβt know why it could be. Maybe you have some kind of clue? or tell me the place where such a configuration is made.
source share