willRotateToInterfaceOrientation未在模态呈现的视图控制器中调用

时间:2013-04-25 01:04:57

标签: ios objective-c ios6 uiinterfaceorientation screen-rotation

我的整个应用都是肖像。当您在集合视图控制器中点击图像时,我会以模态方式在MWPhotoBrowser视图控制器中显示图像。所以我想在那里支持多种方向。我只支持iOS 6,并且有以下定位方法:

- (BOOL)shouldAutorotate {
    return YES;
}


- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskAllButUpsideDown;
}

这些被调用,但willRotateToInterfaceOrientation及后续willAnimateRotationToInterfaceOrientationdidRotateFromInterfaceOrientation从未被调用。

它不会出现在导航控制器或任何其他内容中。不知道我还需要做什么才能在模态显示的视图控制器中支持旋转。

1 个答案:

答案 0 :(得分:2)

重新阅读文档后,我相信我的应用程序必须支持应用程序(plist)级别的横向方向。在这种情况下,我将不得不在我的其他视图控制器中更改支持的方向以限制它。