I have a UIViewController (aViewController) added to a UINavigationController which in turn is added to a UITabBarController.
I then use [self.navigationController presentModalViewController:animated] within aViewController to present a new view controller (bViewController).
However bViewController is always displayed full screen, thus hiding the UITabBarController.
What can I do to ensure the UITabBarController is always visible when bViewController is presented modally?