views:

476

answers:

0

Hi,

I have an application with a splitviewcontroller in root. My menu at left and at right I have a embedded mini appication for each menu. In this mini application I had many level of navigation.

A NavigationController in the content of SplitViewController represents my mini application with a tableview which permit to access the details of a sheet. These details are integer into a TabBarController with two tabs, the first tab is a classic information and in the second tab, I have a new TableView which also permit to access an other informations. These new informations are also integer into a TabBarController, so I have four level of navigation. This solution is possible ?

I have a problem with my first TabBarController, I have defined my TabBar with InterfaceBuilder but when I execute nothing appears.

If I make it in my code in the viewDidLoad

MyView *home = [[MyView alloc] init]; NSArray *array = [[NSArray alloc] initWithObjects:home, nil]; self.viewControllers = array;

I have my differents view but the tabbar don't have title and icon.