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];
}
}
+ (void)attemptRotationToDeviceOrientationmethod can be the answer to your question. – Canopus Jul 6 '12 at 18:56shouldAutoRotateToInterfaceOrientationisn'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 usingaddSubviewto transitioning between views). If you're still having an issue here, feel free to let us know. – Rob Feb 1 at 18:37UIView/UIViewControllerthat presented it is now rotated to landscape without even calling any rotate methods. I can intercept rotation notifications with theNSNotificationCenter, but that won't help me, since I can't force rotate the controller. – RileyE Feb 1 at 19:05