こんにちは、私は私だけiPhoneアプリ:MPMoviePlayer:PlayVideoは、風景モードでのみ
どのように私はそれを達成することができランドスケープモードでビデオを再生するためにmpmovieplayerを作りたいonly.Butポートレートモードで実行するiPhoneアプリを持っていますか?
ここにコードがあります。
NSString *path = [[NSBundle mainBundle] pathForResource:lblVideoName.text ofType:@"mp4" inDirectory:nil];
NSURL *url = [[NSURL alloc] initFileURLWithPath:path];
NSLog(@"URL== %@",url);
moviePlayer = [[MPMoviePlayerController alloc]
initWithContentURL:url];
moviePlayer.controlStyle = MPMovieControlStyleDefault;
moviePlayer.shouldAutoplay = YES;
[self.view addSubview:moviePlayer.view];
[moviePlayer setFullscreen:YES animated:YES];
助けてください。
おかげ
ビューの向きを管理する代わりに、MPMovieControllerの設定を行う必要はありません。 –