views:

104

answers:

1

I have a UIViewController that contains a UITabbarController which contains a UINavigationController.

When I am setting up my IB outlets, what should the File's Owner view outlet be set to?

A: 

I think that it should be set to UITabbarController. Later, if you need to access to UINavigationController just call like this [tabBar.navigationController pushViewController:animated];

vodkhang
IB won't let me set the File Owner's view to the UITabBarController, only the tab-bar part of it. The proper outlets are defined in my header file.
Sheehan Alam