Modal View Controller force Landscape orientation

2019-03-26 15:14发布

I have a UITabBarController presented in Portrait mode. On one of the tabs I have a button that shows a UIViewController modally (A simple storyboard segue performs the action).

I want this modal view to be shown in Landscape mode, but I can't get it to turn automatically.

I have this in the modal views controller

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

I've added landscapeLeft to the .plist supported orientations (although this also allows the TabBar to be rotated which I don't want)

I've also added this to the ViewDidLoad of the modal view

[UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationLandscapeLeft;

but I just can't get it to rotate by itself.

Thanks

EDIT ----

It seems shouldAutoRotate isn't even being called!

Also, I'm trying to detect the orientation and this code below always shows 2, regardless of orientation!

if ([[UIDevice currentDevice] orientation] == UIInterfaceOrientationPortrait) {
        NSLog(@"1");
        self.hostView.frame = CGRectMake(0, 60, 200, 255);
    } else {
        NSLog(@"2");
        self.hostView.frame = CGRectMake(0, 45, 480, 255);
    }

EDIT 2 ---

My bad. I guess I should have mentioned I was using iOS 6. The display rotates automatically on iOS 5. shouldAutorotateToInterfaceOrientation is deprecated so I need to read up on the new methods.

4条回答
小情绪 Triste *
2楼-- · 2019-03-26 15:23

iOS 6.0 Release Notes
"More responsibility is moving to the app and the app delegate. Now, iOS containers (such as UINavigationController) do not consult their children to determine whether they should autorotate. "

-(BOOL)shouldAutorotate of UIViewController under any Container (like UINavigationController) will not be called from IOS6.

Tried a solution with using Category to add method to existing UINavigationController Class.

inside the shouldAutorotate method, you can call shouldAutorotate method in each view controller of self.viewControllers. In fact, you can pass to your child view controller.

查看更多
ら.Afraid
3楼-- · 2019-03-26 15:30

I do exactly this in my app, and do it via shouldAutoRotateToInterfaceOrientation, slightly differently than you:

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

for iOS 6, you must also set window.rootViewController = {your root view controller}; in your app delegate. I'm hoping this is your issue

查看更多
看我几分像从前
4楼-- · 2019-03-26 15:38

In iOS 6 it seems to be this method may help force a specific orientation on iOS 6.

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscape;
}

I am still trying to get it to work and will update with any findings.

查看更多
Ridiculous、
5楼-- · 2019-03-26 15:39

If you want to force rotation in iOS6, your rootviewController should implement these methods:

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscape;
}

- (BOOL)shouldAutorotate {
    return YES;
}
查看更多
登录 后发表回答