I have a UIViewController that returns YES in shouldAutorotateToInterfaceOrientation: for UIDeviceOrientationPortrait and NO for everything else. With that view on the top of the stack, I use pushViewController:animated: to push a new UIViewController. The new controller returns YES for anything in shouldAutorotateToInterfaceOrientation:.

The first view refuses to rotate (as expected). Once the second view is pushed, the user can rotate the device and the UI will rotate (also as expected). If the second view is in landscape mode and the user presses the back button (which calls popViewControllerAnimated:), the first view will appear rotated (unexpected!).

If the user rotates the device back to portrait orientation, the view will rotate and then be stuck in portrait mode as before. This works but it's ugly for the user until they rotate back. So I'm in search of a way to make this view stay in portrait mode.

The only workaround I have found so far is to use -[UIDevice setOrientation:], which throws a warning (orientation is read-only) but works since it is actually defined. This is a huge hack and I'd like a real solution. In search of a real solution I attached GDB to the Photos application (MobileSlideshow.app) and discovered that it too uses -[UIDevice setOrientation:]. Being an internal application though I guess they have different rules.

Is there a correct way to achieve the expected autorotation behavior?

link|improve this question

I believe there are examples of apps that (presumably) use setOrientation in the app store. One is Tweetie, which can force a landscape keyboard when writing tweets. Maybe they got away with it since it's not the default settings. – Daniel Dickison Jun 9 '09 at 15:50
feedback

7 Answers

up vote 0 down vote accepted

I was about to tell you that there was probably no way, but then I had a thought. It would be difficult to get right, but you might be able to make it work if you used two separate UINavigationControllers: one that controls the root view and prohibits rotation, and one for the child views that allows it. You would manually handle the transition to and from the root controller and the child controller.

You'd have to patch up the child navigation controller to have the correct back button. And, of course, you'd have to handle the back button press yourself. You would probably have to use a dummy UINavigationBar to do the animation from one navigation controller to the next so that the transition will look right. You would also have to animate the "push" transition between the navigation controllers, as well, which might take a bit of tweaking to get it to look right. You would have to:

  1. Configure a dummy navigation bar to exactly match the outgoing navigation controller's and place it directly on top of the navigation controller's bar. (You could copy the configuration of the current view controller's UINavigationItem and push it on)
  2. Place the new navigation controller off-screen at the right edge
  3. Animate the movement of the new and old controllers' frames from right to left
  4. Create a copy of the UINavigationItem for the incoming view controller and push it on the dummy navigation bar
  5. When the animation completes, remove the dummy UINavigationBar from the view, and also the outgoing navigation controller.

All of this is a lot of work, but if you're very clever (and very tenacious), you might be able to get it to work. I'd love to see the result!

That said, you might be better off just using setOrientation: and taking your chances with the App Store approval process ;-)

link|improve this answer
feedback

It has been a old post but since it hasn't been solved. I would like to share my solution, for any others who might be in a headache.

Objective: A UINavigationController and most of viewcontrollers in its stack fixed at portrait, except for one viewcontroller in the stack being allowed to rotate to both portrait and landscape.

Problem: intuitively I set an selective shouldAutorotateToInterfaceOrientation by checking if the topViewController is the rotableViewController. However after poping back from the rotableViewController at the landscape mode, the navigationcontroller is now shown in the landscape mode although it is not allowed.

Solution:The killer is to disallow the rotation at viewWillAppear and present & dismiss a modalViewController without animation.

  1. An appViewController is added to the window as the host viewController, i.e. rooter than the RootViewController;
  2. A navigationController is added to the appViewController, with delegate set to appViewController;
  3. In the AppViewController


- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    if (interfaceOrientation == UIInterfaceOrientationPortrait) return YES;
    return canRotate;
}


- (void)navigationController:(UINavigationController *)navigationController didShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
    [viewController viewDidAppear:animated];
    canRotate = ([navigationController.topViewController isKindOfClass:[MyRotatable class]]);
}


- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
    [viewController viewWillAppear:animated];
    if (![navigationController.topViewController isKindOfClass:[MyRotatable class]]) {
        canRotate = NO;
        UIViewController * blanck = [[UIViewController alloc] initWithNibName:nil bundle:nil];
        [self presentModalViewController:blanck animated:NO];
        [self dismissModalViewControllerAnimated:NO];
        [blanck release];
    }
}
link|improve this answer
feedback

A legal alternative to UIDevice setOrientation is as follows:

UIWindow* window = UIApplication.sharedApplication.keyWindow;
UIView* view = [window.subviews objectAtIndex:0];
[view removeFromSuperview];
[window addSubview:view];

This forces the current view controller to evaluate its orientation, calling shouldAutorotateToInterfaceOrientation and switching away from any prohibited orientations.

E.g. the following code would be used in a view controller that supports all orientations but whose parent only supports landscape:

- (void)popBack
{
    [self.navigationController popToRootViewControllerAnimated:YES]; 
}

- (IBAction)backPressed:(id)sender
{   
    portraitOrientationPermitted = NO;

    // Force the framework to re-evaluate the interface orientation.
    UIWindow* window = UIApplication.sharedApplication.keyWindow;
    UIView* view = [window.subviews objectAtIndex:0];
    [view removeFromSuperview];
    [window addSubview:view];

    [self performSelector:@selector(popBack) withObject:nil afterDelay:0.8];

    portraitOrientationPermitted = YES;
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return portraitOrientationPermitted || 
        UIInterfaceOrientationIsLandscape(interfaceOrientation);
}
link|improve this answer
Dirty-dirty hack, but it works. – beefon Jan 10 at 4:40
feedback

Try it again with the 3.0 OS (now that we can talk about it). Two special cases of this have been worked out under 3.0:

  1. Presenting a portrait modal view over a landscape view and vice-versa. An example is the pre-3.0 behaviour in Mail for viewing attachments. You could rotate to landscape for a PDF and get back the portrait view for the message when you dismissed the attachment view. (Now that we have landscape message view in 3.0 this behaviour seems to be gone).

  2. Mixing orientations within a view stack and getting the correct orientation back when you pop the stack. An example is the transition between the tableview of movies and the movie view in the YouTube app.

There seem to have been some thorny aesthetic problems of how the default transitions for all the permutations should look. There are some weird elements if you view in slo-mo, but it beats bending over backwards in your own code.

link|improve this answer
I tried this and #1 does seem to work correctly, but #2 isn't working for me. I set up a nav-controller project with table view controllers. The root view can't rotate, but the pushed view can. When you pop the second view, it'll stay rotated. In fact, the nav-bar-items appear to get confused, showing the title of the second view even after popping it off. – Daniel Dickison Feb 1 '10 at 4:36
feedback

I've been playing with this recently as well, often I had just handled rotations myself by listening to the deviceDidRotate notification and then handling the window frame and transform, as well as setting the statusBar orientation appropriately.

However this morning I found that UINavigationController forces the correct orientation when you hit the back button. So, although still a bit ugly, you could push the viewController with the limited orientations twice and pop it twice non-animated to force your orientation, and then pop it animated once to display it.

Not ideal, but it's better than trying to handle it all yourself, which often ends up in a HUGE mess.

link|improve this answer
feedback

So this annoying bug comes a really long way from iOS 1 to iOS 4.

I believe the best solution we have it duplicate this bug and let Apple know we really want it fixed. I've just reported it again under the bug ID 8478525.

link|improve this answer
feedback

I ran into the same issue and seems the Bool Statement is never called until the view is rotated so use the viewDidAppear: method to call out your rotation methods

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];

     [scroll setClipsToBounds:NO];

    if ([[UIDevice currentDevice]orientation] == UIInterfaceOrientationLandscapeLeft){
        //do somthing or rather
        [self 
shouldAutorotateToInterfaceOrientation:UIInterfaceOrientationLandscapeLeft];
        NSLog(@"landscape left");
    }
    if ([[UIDevice currentDevice]orientation] == UIInterfaceOrientationLandscapeRight){
        //do somthing or rather
        [self 
shouldAutorotateToInterfaceOrientation:UIInterfaceOrientationLandscapeRight];
        NSLog(@"landscape right");
    }
    if ([[UIDevice currentDevice]orientation] == UIInterfaceOrientationPortrait){
        //do somthing or rather
        [self shouldAutorotateToInterfaceOrientation:UIInterfaceOrientationPortrait];
        NSLog(@"portiat");
    }


 }
link|improve this answer
This doesn't make any sense. You're calling shouldAutorotateToInterfaceOrientation: from the VC and throwing away the BOOL result. – Joe D'Andrea May 1 at 17:37
It makes perfect sense.... you do NOT have to call animated for this method to be fired... It automatically fires "viewDidAppear: which Im sure both you and I know. I handle all my rotation methods within my ShouldAutoRotate method where you would then agin handle any orientation of the device. Since ShouldAutoRotate is NEVER called until the device is rotated "agin" inside the new view, you can simply force that method to be called within viewDidAppear "before it loads"! Try it before you knock it @Joe – FreeAppl3 May 1 at 22:48
feedback

Your Answer

 
or
required, but never shown

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