人像模式的应用程序,返回到肖像模式风景全屏movieplayer后(Portrait-mode ap

2019-10-16 18:31发布

所以我只在纵向模式下的应用程序。 如果我在全屏推出的电影播放器​​,并将其旋转为横向模式,然后我按完成按钮,状态栏在横向模式下,视图是纵向布局,但在横向模式,这样只显示上的部分卵石。

如果我旋转设备自己的意见正确复位,但我需要一种以编程方式做到这一点。

我想这一点:shouldAutorotateToDeviceOrientation只返回肖像模式也是

[[NSNotificationCenter defaultCenter] addObserver:self
                                     selector:@selector(_moviePlayerWillExitFullscreen:)
                                             name:MPMoviePlayerWillExitFullscreenNotification object:nil];

- (void)_moviePlayerWillExitFullscreen:(NSNotification *)notification {
    1) [self willRotateToInterfaceOrientation:self.interfaceOrientation duration:0];
    2) [self attemptRotationToDeviceOrientation];
}
文章来源: Portrait-mode app, return to portrait mode after landscape fullscreen movieplayer