2

我对 iOS 6 Orientation 有疑问。这是我的文件 https://www.dropbox.com/s/f8q9tghdutge2nu/Orientations_iOS6.zip

在这个示例代码中,我想让MasterViewController只有一个纵向方向和DetailViewController一个纵向方向,横向方向。

我知道 iOS 6 的方向是由最上面的控制器控制的。

所以我UINavigationController(CustomNavigationController)在那个类中自定义了一个,设置了supportedInterfaceOrientations 和shouldAutorotate。

-(NSUInteger)supportedInterfaceOrientations{
    if([[self topViewController] isKindOfClass:[DetailViewController class]]){
        return UIInterfaceOrientationMaskAllButUpsideDown;
    }else{
        return UIInterfaceOrientationMaskPortrait;
    }
}

-(BOOL)shouldAutorotate
{
    return YES;
}

一切都很好,除了DetailViewController在横向方向按下后退按钮时,MasterViewController将显示横向方向。

我可以让MasterViewController始终显示纵向方向并且DetailViewController可以有多个方向吗?

谢谢!

4

2 回答 2

3

谢谢!Brennan,
我还在我的博客中收集了其他方法来做到这一点。
http://blog.hanpo.tw/2012/09/ios-60-orientation.html

这是另外两种方式。

1.添加一个类别到 UINavigationController

    @implementation UINavigationController (Rotation_IOS6)

    -(BOOL)shouldAutorotate
    {
        return [[self.viewControllers lastObject] shouldAutorotate];
    }

    -(NSUInteger)supportedInterfaceOrientations
    {
        return [[self.viewControllers lastObject] supportedInterfaceOrientations];
    }

    - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
    {
        return [[self.viewControllers lastObject] preferredInterfaceOrientationForPresentation];
    }

    @end

2.Swap 方法实现(由 spoletto 制作)

https://gist.github.com/3725118

于 2012-10-10T08:04:05.193 回答
1

我按照您在对该问题的评论中的建议完成了这项工作。问题是默认的 UINavigtonController 不使用顶视图控制器的值,因此您需要通过创建一个基类并在 Storyboard 中将其设置为基类来覆盖它。

下面是我使用的代码。

- (NSUInteger) supportedInterfaceOrientations {
    return [self.topViewController supportedInterfaceOrientations];
}

我还有一个用于其余视图控制器的基类,以默认使用纵向方向的行为。我可以在支持更多纵向方向的任何视图控制器中覆盖 iOS 5 和 6 的这些方法。

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

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskPortrait;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
    return UIInterfaceOrientationPortrait;
}

- (BOOL)shouldAutorotate {
    return FALSE;
}
于 2012-10-08T01:45:12.977 回答