我像这样展示我的第二个VC。
UINavigationController *nav = [[UINavigationController alloc] init];
[nav setViewControllers:@[vc] animated:NO];
[self presentViewController:nav animated:YES completion:nil];
在第二个VC中,我写了这个,并且也调用了该方法。
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
但是,当我旋转手机时,它会变为横向。我可以知道如何阻止它吗?在我的其他观点中,我需要支持景观,但不支持这种观点。我该怎么办?