有没有办法强制纵向UIInterfaceOrientation全屏视频

时间:2017-05-29 13:35:57

标签: ios objective-c avplayer uiinterfaceorientation

我正在搜索但无法找到解决方案。我想仅为应用程序支持UIInterfaceOrientationPortrait。但是,有一个用于播放视频的VC。我将这些用于其他VC

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    return UIInterfaceOrientationIsPortrait(interfaceOrientation);
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations{
    return UIInterfaceOrientationMaskPortrait;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
{
    return UIInterfaceOrientationPortrait;
}

我知道那样,但是。有没有办法只支持UIInterfaceOrientationPortrait,但可以全屏横向模式播放视频?例如,将层旋转90度

0 个答案:

没有答案