I have a navigation controller which have a few view controllers. I need to support all orientations for all view controllers except one special view controller which only supports landscape. This special view controller appears in the middle of the navigation stack. I have done quite a lot of research but couldn't find any good solution. Here are the links that I have read and tried.

http://www.iphonedevsdk.com/forum/iphone-sdk-development/3219-force-landscape-mode-one-view.html#post60435

How to rotate screen to landscape ?

How to autorotate from portrait to landscape mode? iPhone - allow landscape orientation on just one viewcontroller http://goodliffe.blogspot.com/2009/12/iphone-forcing-uiview-to-reorientate.html

Next I am going to try to replace navigation controller with presentModalViewController in order to display the special view controller. Then I am going to create a new navigation view controller inside the special view controller to push the subsequent view controllers.

If anyone has a better idea, please let me know. Really appreciated!

UPDATE: I have successfully use the method I described above: replace pushViewController with presentModalViewController and create a new navigation controller.

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

You can make actions: Change Your code with accordance of schellsan suggestion, next - Try to add currentViewController(which will push to navigation viewController) as property to appDelegate. When You attempt to push view controller, set it to current view controller before this. Next - make a subclass of rootViewController in navigation controller. In this subclass owerload method

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Overriden to allow any orientation.
    return [appDelegate.currentViewController shouldAutorotateToInterfaceOrientation:interfaceOrientation];
}

It should works if You not using a navigation bar and pushes new controller after popping an old

link|improve this answer
feedback

It should be as simple as implementing - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation in each UIViewController pushed into your UINavigationController. In the case that one UIViewController's view shouldn't rotate, return NO for that specific orientation in that specific UIViewController. There's a gotcha here though, if your UINavigationController implements - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation it will block its viewControllers from receiving that method. In that case, you should forward the message to the topViewController using [[self topViewController] shouldAutorotateToInterfaceOrientation:interfaceOrientation];`.

link|improve this answer
I wished it's that simple. Have you tried that? There are a few problems with that. 1. if you render the special landscape view when the phone is portrait, when you turn the phone to landscape, the view will rotate to portrait unexpectedly. 2. when you render the special landscape view the first time, then rotate the phone to portrait, then exit the special view and reenter, the view is rotated unexpectedly. This seems like a problem with the navigation controller and I really wish Apple can make it work for what you described. – PokerIncome.com Feb 17 '11 at 8:26
I have tried it. I think the problems you're encountering may be specific to your application. Try starting a new project to isolate the UINavigationController rotation problem, then run some experiments. – schellsan Feb 17 '11 at 18:47
feedback

You could try this code in your UINavigationController to call the current visible view's shouldAutorotateToInterfaceOrientation. In my case I have the UINavigationController in a UITabBarController but you could probably adapt it to other cases.

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    if ([appDelegate.tabBarController.selectedViewController respondsToSelector:@selector(topViewController)])
    {
        UINavigationController *nc = (UINavigationController*)appDelegate.tabBarController.selectedViewController;
        return [nc.topViewController shouldAutorotateToInterfaceOrientation:interfaceOrientation];
    }
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.