I\'m working on a universal app, and I\'m trying to share as much code as possible between the iPhone and iPad versions. I need to use a TabBarController as my root view contro
I solved this in my app by hiding then showing the navigation bar after adding the navigation controllers view. eg.
[parentView addSubview:navController.view]; [navController setNavigationBarHidden:YES]; [navController setNavigationBarHidden:NO];