我的应用中有一个视频流,我想像youtube播放器一样工作。这意味着当视频播放器处于全屏模式且设备处于横向模式时,在轮换到移植时,我想关闭视频播放器的全屏。要做到这一点,我编码如下:
override func willRotateToInterfaceOrientation(toInterfaceOrientation: UIInterfaceOrientation, duration: NSTimeInterval) {
if toInterfaceOrientation == .Portrait
{
self.moviePlayer.setFullscreen(false, animated: true)
}
}
但是当我旋转设备时,它仍处于全屏模式。如何强制电影播放器在方向上退出全屏?
答案 0 :(得分:-1)
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
}