我有一个View Controller-横向模式下为A。 在此之上,我想展示一个View Controller-纵向模式下的C。在下面,它有一个导航VC-B。 由于某些原因,即使我添加了以下代码,C始终是横向的:
-(BOOL)shouldAutorotate
{
return NO;
}
-(UIInterfaceOrientationMask)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationPortrait;
}