Question

I set up XCode 4.5 and iOS6 simulator a few minutes ago. My app supports all 4 orientations of the iPhone, portrait bottom and top home button, landscape left and right.

Well, I put that to the .plist as it is required by iOS6 and also the old shouldRotateTo... method is still there returning YES.

But in the simulator, the App is not rotating to portrait top home button.

Why? Is this by purpose? Would it work correct on device?

Thanks.

Was it helpful?

Solution

OK, I found the answer now myself.

It is not enough to have

- (BOOL)shouldAutorotate {

    return YES;
}

- (NSUInteger)supportedInterfaceOrientations {

    return UIInterfaceOrientationMaskAll;
}

in YOUR ViewController if it is pushed into a UINavigationViewController. The UINavigationViewController also has to have those methods. Preferably, you do this by having a small Category on UINavigationViewController.

This is my UINavigationController-Rotation.h:

@interface UINavigationController (Rotation)
@end

and my UINavigationController-Rotation.m:

#import "UINavigationController-Rotation.h"

@implementation UINavigationController (Rotation)

#pragma From UINavigationController

- (BOOL)shouldAutorotate {

    BOOL result = self.topViewController.shouldAutorotate;

    return result;
}

- (NSUInteger)supportedInterfaceOrientations {

    NSUInteger result = self.topViewController.supportedInterfaceOrientations;

    return result;
}

#pragma -

@end

Thanks for helping me!

OTHER TIPS

The default behavior for iOS6 on iPhone is no Upside-Down orientation.

from UIViewController Class Reference: The default values for a view controller’s supported interface orientations is set to UIInterfaceOrientationMaskAll for the iPad idiom and UIInterfaceOrientationMaskAllButUpsideDown for the iPhone idiom.

You can see this behavior also in Safari or Maps.

I tried to override this with UIInterfaceOrientationMaskAll, like Dean said, but to no effect. I decided not to use the upside down mode anymore, since it's kind of a User Interface Guideline thing which I like to follow and not to confuse users.

I think your viewControllers are going to return the default which is all but upside down. You need to implement:

-(NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskAll;
}

For all the viewControllers you want to support all orientations.

In case anyone else who is still having issues even after following Christoh's answer:

I just noticed the projects plist has separate entries for iPad and iPhone (Supported Interface Orientations (iPad) and Supported Interface Orientations (iPhone)).

Hope that helps.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top