Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So, I've given up on trying to solve an issue I've been having where my controller will rotate without calling my shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation method, because everyone for a few years has been stating it as an iOS bug.

Now I need to just force rotate my View Controller. Is there a way I can do that, since the UIDevice instance method has been removed now and I don't know what to do to force rotate my controller.

share|improve this question
Take a look at this question stackoverflow.com/questions/9826920/…. I am not sure, + (void)attemptRotationToDeviceOrientation method can be the answer to your question. – Canopus Jul 6 '12 at 18:56
Its a good thing to know about, but unfortunately, my issue is the opposite. I'm not trying to rotate to a certain orientation, but back from a wrong orientation while the device is still being held in that incorrect orientation. – RileyE Jul 6 '12 at 20:16
You say that shouldAutoRotateToInterfaceOrientation isn't getting called. Clearly this is a pre-iOS6 issue, so maybe you don't care any more, but if you're still having this problem, this can be caused by allowing your view controller hierarchy to get out of sync with your view hierarchy (e.g. by incorrectly using addSubview to transitioning between views). If you're still having an issue here, feel free to let us know. – Rob Feb 1 at 18:37
@Rob I am still having the issue. The issue is when the MPMediaPlayer shows up and is rotated to landscape (which is in a view that is portrait only - however I appreciate it rotating to landscape). When the MPMediaPlayer is dismissed, the UIView / UIViewController that presented it is now rotated to landscape without even calling any rotate methods. I can intercept rotation notifications with the NSNotificationCenter, but that won't help me, since I can't force rotate the controller. – RileyE Feb 1 at 19:05

2 Answers

I'm not sure which UIDevice method that you are saying has been removed, but the following has worked for me (this does use the UIDevice orientation method). Bottom line, if you have a view that only accepts landscape, you can use the following to force iOS to change the orientation. It's curious, but it works. I apologize that I can't give credit to the original author, but once came across this elsewhere on StackOverflow:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

- (void)forceLandscape
{
    // make sure shouldAutorotateToInterfaceOrientation is configured to accept only landscape

    if (UIDeviceOrientationIsPortrait([[UIDevice currentDevice] orientation]))
    {
        UIWindow *window = [[UIApplication sharedApplication] keyWindow];
        UIView *view = [window.subviews objectAtIndex:0];
        [view removeFromSuperview];
        [window addSubview:view];
    }
}

The equivalent to force portrait mode (assuming, of course, your shouldAutorotateToInterfaceOrientation accepts only portrait):

- (void)forcePortrait
{
    // make sure shouldAutorotateToInterfaceOrientation is configured to accept only portrait

    if (UIDeviceOrientationIsLandscape([[UIDevice currentDevice] orientation]))
    {
        UIWindow *window = [[UIApplication sharedApplication] keyWindow];
        UIView *view = [window.subviews objectAtIndex:0];
        [view removeFromSuperview];
        [window addSubview:view];
    }
}
share|improve this answer
So, basically, remove the root view controller and readd it? Doesn't this seem a bit hackish, since the controller shouldn't be rotating anyways? Will apple allow this in a full application? – RileyE Jul 6 '12 at 20:10
Also, thanks for the answer! +1 – RileyE Jul 6 '12 at 20:11
I just want to wait to see if someone else has another option, but I'm pretty sure this is what I'll end up having to go with. – RileyE Jul 6 '12 at 20:11
Oh. Sorry. Its the root view, not view controller. I'm not reading things correctly! – RileyE Jul 6 '12 at 20:18
But I did try this and its still not forcing the rotation. – RileyE Jul 6 '12 at 20:20
show 4 more comments

I have been looking into this and there isn't a proper answer to my question, unfortunately.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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