在旋转时在Master-Detail View和其他视图控制器之间切换?

时间:2013-03-27 00:38:04

标签: ios ipad ios6

我正在测试Ipad的应用程序。基本上我使用模板为主细节应用程序,并有另一个portraitViewController。现在,当应用程序以纵向模式启动时,我希望它只显示portraitViewController,当设备旋转时,例如横向模式,我想只显示master-detailViewController。什么是最好的方法。

我正在测试单个视图应用程序的示例代码,但是master-detail视图拒绝隐藏:

- (void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)
interfaceOrientation duration:(NSTimeInterval)duration {
    if (interfaceOrientation == UIInterfaceOrientationPortrait) {
        self.view = self.portrait;
        self.view.transform = CGAffineTransformIdentity;
        self.view.transform =
        CGAffineTransformMakeRotation(degreesToRadians(0));
        self.view.bounds = CGRectMake(0.0, 0.0, 320.0, 460.0);
    }
    else if (interfaceOrientation == UIInterfaceOrientationLandscapeLeft) {
        self.view = self.landscape;
        self.view.transform = CGAffineTransformIdentity;
        self.view.transform =
        CGAffineTransformMakeRotation(degreesToRadians(−90));
        self.view.bounds = CGRectMake(0.0, 0.0, 480.0, 300.0);
    }
    else if (interfaceOrientation ==
             UIInterfaceOrientationLandscapeRight) {
        self.view = self.landscape;
        self.view.transform = CGAffineTransformIdentity;
        self.view.transform =
        CGAffineTransformMakeRotation(degreesToRadians(90));
        self.view.bounds = CGRectMake(0.0, 0.0, 480.0, 300.0);
} } 

1 个答案:

答案 0 :(得分:1)

视图控制器不应该像这样实时更改其视图。你没有看到任何事情,因为视图控制器的旧视图仍在界面中;你没有从界面上删除它。你也不应该这样做。实现这一目标的方法是交换视图控制器;使用不同的视图控制器和不同的视图。

您从主 - 详细视图控制器开始,因此应用程序的根视图控制器是UISplitViewController。它的视图(拆分视图)显示为您要删除的视图。因此,您必须将UISplitViewController替换为窗口rootViewController

但这对屁股来说是一个巨大的痛苦。我认为你可能会更加高兴只是在纵向方向上将模态(呈现)视图控制器放在所有内容之前。

这是一个可下载的示例项目,它提供了一个视图控制器以响应设备轮换:

https://github.com/mattneub/Programming-iOS-Book-Examples/tree/master/ch19p609rotationForcingModalView