views:

14

answers:

0

I have a root view having a navigation controller. This root view has got links to other subviews (which obviously get pushed onto its navigation controller stack). One of the subviews contains a tab bar controller of its own. This tab bar has three tabs. Each of these tabs is connected to a view. One of these views has to have a link to another view which has to be pushed to the root view navigation controller stack.

Now, "[super.navigationController pushViewController:... animated:YES];" won't work because "super" here refers to the tab bar controller and not the navigation controller of the root view.