Presentviewcontroller / presentmodelviewcontroller仅限肖像

时间:2015-03-31 14:30:59

标签: ios uiviewcontroller landscape-portrait presentviewcontroller

我像这样展示我的第二个VC。

UINavigationController *nav = [[UINavigationController alloc] init];
[nav setViewControllers:@[vc] animated:NO];
[self presentViewController:nav animated:YES completion:nil];

在第二个VC中,我写了这个,并且也调用了该方法。

- (NSUInteger)supportedInterfaceOrientations
{
    return UIInterfaceOrientationMaskPortrait;
}

但是,当我旋转手机时,它会变为横向。我可以知道如何阻止它吗?在我的其他观点中,我需要支持景观,但不支持这种观点。我该怎么办?

0 个答案:

没有答案
相关问题