ビデオをフル スクリーンで再生することはできましたが、(iPad の) ウィンドウで再生しようとすると、ビデオ コントロールは常にロード中と表示されます。
私がやりたいことは、viewDidLoad が呼び出されるとすぐにビデオを自動的に再生してループすることです。
これまでの私のコードは次のとおりです..
NSString *url = [[NSBundle mainBundle]
pathForResource:@"Test"
ofType:@"mp4"];
MPMoviePlayerViewController *player =
[[MPMoviePlayerViewController alloc]
initWithContentURL:[NSURL fileURLWithPath:url]];
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(movieFinishedCallback:)
name:MPMoviePlayerPlaybackDidFinishNotification
object:player];
player.view.frame = CGRectMake(500, 400, 200, 200);
[self.view addSubview:player.view];
//---play movie---
[player.moviePlayer play];
player = nil;
誰でも解決策を提供できますか?