I have a nested view hierarchy for an iPad application that supports orientation changes. It looks similiar to the following.

UIViewController
    UIView
        - UIView
            - UIImageView (disable rotation)
            - UIImageView
            - UIView (disable rotation)
        - UIView
        - UIView
        ...

I would like to lock the orientation for some of my subviews, while allowing others to auto-rotate and resize. I can't quite seem to figure out how to accomplish this.

One approach seems to be rotating the subviews manually within willAnimateRotationToInterfaceOrientation:. That's not particularly attractive given the SDK is executing a rotation that I would just be undoing.

Is there a way to simply disable orientation changes for subviews or some other method to restructure my hierarchy?

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

I encountered a similar issue in my own app - it's not quite as straightforward as you might expect.

Autorotation is handled by a view's UIViewController (shouldAutorotateToInterfaceOrientation:), so one approach is to arrange your hierarchy such that rotatable views are managed by one view controller, and non-rotatable views by another view controller. Both of these UIViewController's root views then need adding to the window/superview.

The subtlety here is that if you have two view controller's views on the same level (i.e. added via addSubview:), only the first view controller will receive the shouldAutorotateToInterfaceOrientation: message. For this reason, I believe the best thing to do is to add the first view controller view using addSubview:, and then use insertSubview:belowSubview: to add the second. This ensures that both view controllers receive the autorotation message, and you can then simply override it in your view controller subclasses to decide how each will respond on device rotation.

I used this approach myself to achieve a toolbar that rotates, while the main view does not.

Apple's Technical Q&A QA1688 ("Why won't my UIViewController rotate with the device?") talks a little bit about this issue.


EDIT

Some sample code as requested.

I did this in a new project - a new View-based Application will do just fine. Add two new view controllers: RotatingViewController and NonRotatingViewController. Inside each of their nibs I just added a label to describe whether the view should rotate or not. Add the following code:

'RotatingViewController.m'

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return YES;
}


'NonRotatingViewController.m'

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    if (interfaceOrientation == UIInterfaceOrientationPortrait) {    // Or whatever orientation it will be presented in.
        return YES;
    }
    return NO;
}


'AppDelegate.m'

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    RotatingViewController *rotating = [[RotatingViewController alloc] initWithNibName:@"RotatingViewController" bundle:nil];
    self.rotatingViewController = rotating;
    [rotating release];

    NonRotatingViewController *nonRotating = [[NonRotatingViewController alloc] initWithNibName:@"NonRotatingViewController" bundle:nil];
    self.nonRotatingViewController = nonRotating;
    [nonRotating release];

    [self.window addSubview:self.rotatingViewController.view];
    [self.window insertSubview:self.nonRotatingViewController.view belowSubview:self.rotatingViewController.view];

    [self.window makeKeyAndVisible];

    return YES;
}

I hope this helps.

link|improve this answer
This approach doesn't seem to be working for me. I've configured a view hierarchy with a parent view controller that contains two child view controllers (portraitViewController and rotateViewController), each containing a UIImageView with shouldAutorotateToInterfaceOrientation returning NO for portrait and YES for rotate. If I set shouldAutorotateToInterfaceOrientation to NO in my parent, orientation is static, as expected. Setting shouldAutorotateToInterfaceOrientation to YES in my parent, however, causes both to rotate. Any chance you could post some code? I've gone wrong somewhere. – Jason George Sep 10 '11 at 18:18
1  
@Jason: I've added some sample code as requested. – StuDev Sep 10 '11 at 19:27
1  
@Jason: View Controllers can be quite temperamental and particular - using a custom 'container' controller as you have described might be what is causing the problem. I would ensure that your child view controller views are both attached directly to the application window. – StuDev Sep 10 '11 at 19:30
Thanks StuDev. +1 all around. The 'container' controller is definitely causing the problem. – Jason George Sep 13 '11 at 17:47
It works like a charm! +1 – Carles Estevadeordal Jan 3 at 23:38
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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