MpMovieplayer를 사용하여 ios 5에서 동적으로 (장치에서 비디오를 선택하는) 파일을 재생하고 있지만 재생하지 않습니다. 이것은 blackscreen.I를 보여 주며 플레이어에게 영화 URL을 직접 보냈지 만 작동하지 않습니다. 대신 MPMovieplayer의는mov 파일 용 비디오 플레이어?
NSString *path = [[NSBundle mainBundle] pathForResource:@"Movie" ofType:@"mov"];
NSURL *movieURL = [NSURL fileURLWithPath:path];
NSLog(@"movieURL ----%@",movieURL);
movieplayer=[[MPMoviePlayerController alloc] initWithContentURL:movieURL];
if([movieplayer respondsToSelector:@selector(view)])
{
movieplayer.controlStyle = MPMovieControlStyleFullscreen;
[movieplayer.view setFrame:self.view.bounds];
[self.view addSubview:movieplayer.view];
movieplayer.shouldAutoplay=true;
[movieplayer play];
}