我正在展示一个在其中播放视频的视图控制器。
当我点击一个按钮时,视频播放器视图将从情节提要中使用以下代码启动:
_moviePlayer = [self.storyboard instantiateViewControllerWithIdentifier:@"videoPlayerController"];
[_moviePlayer.view setFrame:self.view.bounds];
[_moviePlayer playMoviesForItems:shopItems];
[self presentViewController:_moviePlayer animated:NO completion:^{
[self.scrollView scrollRectToVisible:CGRectZero animated:YES];
}];
但是方向变成这样的纵向:
我在下面写了代码但不起作用:
- (BOOL) shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)toInterfaceOrientation
{
return UIInterfaceOrientationIsLandscape(toInterfaceOrientation);
}
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscape;
}
iPad没有问题。问题出在 iPhone 上。
更新:
支持的方向是:
我哪里错了?