以下のコードを使用して基本的な.movビデオファイルを再生しようとしていますが、アクションを割り当てたボタンを押すと、黒いフレームだけが表示されますが、ビデオは再生されません。どんな助けでも大歓迎です。ありがとう。
@implementation SRViewController
-(IBAction)playMovie{
NSString *url = [[NSBundle mainBundle]
pathForResource:@"OntheTitle" ofType:@"mov"];
MPMoviePlayerController *player = [[MPMoviePlayerController alloc]
initWithContentURL: [NSURL fileURLWithPath:url]];
// Play Partial Screen
player.view.frame = CGRectMake(10, 10, 720, 480);
[self.view addSubview:player.view];
// Play Movie
[player play];
}
@end