我正在搜索但无法找到解决方案。我想仅为应用程序支持UIInterfaceOrientationPortrait
。但是,有一个用于播放视频的VC。我将这些用于其他VC
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsPortrait(interfaceOrientation);
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations{
return UIInterfaceOrientationMaskPortrait;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
return UIInterfaceOrientationPortrait;
}
我知道那样,但是。有没有办法只支持UIInterfaceOrientationPortrait
,但可以全屏横向模式播放视频?例如,将层旋转90度