我正在播放嵌入在网络视图中的youtube视频,我需要视频播放器水平或垂直旋转,但我无法做到。我需要专门的视频播放器旋转,而不是视图,因为应用程序在纵向模式下工作。任何帮助将非常感谢。
答案 0 :(得分:1)
在plist文件中,您应该检查应用程序支持的所有方向。 这意味着,你也应该检查Landscape Left和Landscape Right。
对于你不想旋转的每个ViewController,你需要实现这些方法:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation == UIInterfaceOrientationPortrait)
}
- (BOOL)shouldAutorotate
{
return NO;
}
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
像这样。