我正在使用情节提要,并且在 UITabBarController 中嵌入了 UINavigationController。我推送一个视图控制器,然后从这个视图控制器我呈现一个带有 UIViewController 的 MODAL UINavigationController。
问题是,当我在模态视图之前的所有视图都不能旋转时,模态视图控制器可以旋转。如何停止允许任何旋转的模态导航控制器?
我试过添加:
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
和
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
谢谢