MPMoviePlayerControllerを使用して、iPadアプリでビデオを再生したい。私の問題は、そのプレーヤーが「読み込み中」を表示しているだけで、ビデオを再生しないことです。私が使用するコードは次のとおりです。
- (void)playMovieFile:(NSString *)fileName
{
NSString *filePath=[[NSBundle mainBundle] pathForResource:fileName ofType:@"mov"];
NSURL *fileUrl=[NSURL fileURLWithPath:filePath];
self.moviePlayer=[[MPMoviePlayerController alloc] initWithContentURL:fileUrl];
[self.moviePlayer.view setFrame:self.view.frame];
[self.view addSubview:self.moviePlayer.view];
[self.moviePlayer prepareToPlay];
[self.moviePlayer play];
}
私もMPMoviePlayerViewControllerを使おうとしていますが、成功しました。また、MPMoviePlayerControllerはどの種類の映画を再生しますか?映画の大きさのせいでしょうか?263MBです。