6

我想支持 iOS 6 旋转。麻烦的是,我一直在查看大量文档和堆栈溢出问题,但没有找到任何稍微深入的解决方案。我只看到我应该将这两个方法添加到我的视图控制器类中 - 但是,如果我没记错的话,它们的操作方式与 iOS 6 之前的方法不同:

- (BOOL)shouldAutorotate
{
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskAll; // use what is appropriate for you.
}

我的应用程序当前使用以下代码在 pre-iOS6 中旋转。请注意,我使用界面方向参数来确定是否要推送我的视图控制器。如何在 iOS 6 轮换代表中实现这一点?

-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
    UIInterfaceOrientation toOrientation = self.interfaceOrientation;

    if ( self.tabBarController.view.subviews.count >= 2 )
    {
        UIView *tabBar = [self.tabBarController.view.subviews objectAtIndex:1];

        if(toOrientation != UIInterfaceOrientationLandscapeLeft && toOrientation != UIInterfaceOrientationLandscapeRight)
        {
            CUSTOM_DEBUG_LOG("\n\nRotated back to Portrait");
            tabBar.hidden = FALSE;
        }
    }
}

- (void) willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation duration:(NSTimeInterval)duration
{
    if (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight)
    {
        CUSTOM_DEBUG_LOG("\nView going landscape");
        ScrollViewController *s = [[ScrollViewController alloc] initWithNibName:@"ScrollViewController" bundle:nil];
        [self.navigationController pushViewController:s animated:NO];
        [s release];
        self.tabBarController.tabBar.hidden = YES;
        self.navigationController.navigationBar.hidden = YES;
    }

}
4

4 回答 4

3

父视图现在在 iOS 6 中处理旋转。子类化你的导航控制器并添加一个布尔值

- (BOOL)shouldAutorotate {
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskPortrait;  // your rotation here
}
于 2012-10-04T18:56:46.237 回答
3

签出这个这个SO 讨论。

[编辑]

是的,您提到的方法在 iOS 6.0 中并未被弃用,它们将继续工作。这只是自动旋转的工作方式已经改变。到目前为止,决定是否旋转是视图控制器的责任,但现在 RootViewController 将决定他们的孩子是否应该旋转。如果您没有设置 rootviewcontroller,则必须将其添加到窗口,然后将 shouldAutoRotate 和 supportedInterfaceOrientations 方法放入 rootviewcontroller。

于 2012-10-04T19:54:29.233 回答
1

当我第一次发布问题时,我可能没有正确实现 iOS6 轮换代码。

我错误地认为 willAnimateRotationToInterfaceOrientation 函数在 iOS6 中已被弃用,导致我相信有一个带有方向参数的新 iOS 旋转委托。事实证明情况并非如此,所以我的应用程序有点工作。

The code I plugged into my app was just this:

- (BOOL)shouldAutorotate
{
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations
{
    return (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight);
}
于 2012-10-04T21:26:58.877 回答
1

If you are using a UINavigationController, override shouldAutomaticallyForwardRotationMethods = YES property.

Then like Mark S said, also override shouldAutorotate and supportedInterfaceOrientations for the children VCs.

于 2013-03-26T20:59:04.860 回答