ボタンを押すとビデオを表示する iPad/iPhone アプリに取り組んでいます。ビデオは機能していますが、アプリは縦向きモードにロックされており、ビデオを横向きでのみ表示したいと考えています。これが私の質問に対応するコードです。可能であれば、最も簡単で簡単な方法を希望します。
-(void) view_intro:(UIButton *)introButton {
NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle]
pathForResource:@"Introduction" ofType:@".m4v"]];
moviePlayer = [[MPMoviePlayerController alloc]
initWithContentURL:url];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(moviePlayBackDidFinish:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:moviePlayer];
moviePlayer.controlStyle = MPMovieControlStyleDefault;
moviePlayer.shouldAutoplay = YES;
[self.view addSubview:moviePlayer.view];
[moviePlayer setFullscreen:YES animated:YES];}