我的应用程序处于横向模式,我使用 MPMoviePlayerController 播放示例视频。它工作正常但是当我使用确定按钮停止视频时(或者如果我等到电影结束),方向会自动变为肖像。 当按下确定按钮时,是否可以将应用程序保持在横向模式?
我在主视图控制器中使用跟随代码来强制横向模式:
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
答案 0 :(得分:0)
我认为在MPMoviePlayerPlaybackDidFinishNotification通知中你必须将statusbarorientation设置回横向。