, если вы добавили долженAutorotateToInterfaceOrientation и не решили вашу проблему
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
ТО
Попробуйте добавить эту строку в appDelegate.m
[window_ setRootViewController:navController_];
Удачи