代碼片段:
theMoviPlayer = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:@"/Resources/disc.mp4"]];
theMoviPlayer.controlStyle = MPMovieControlStyleFullscreen;
theMoviPlayer.view.transform = CGAffineTransformConcat(theMoviPlayer.view.transform, CGAffineTransformMakeRotation(M_PI_2));
UIWindow *backgroundWindow = [[UIApplication sharedApplication] keyWindow];
[theMoviPlayer.view setFrame:backgroundWindow.frame];
[backgroundWindow addSubview:theMoviPlayer.view];
[theMoviPlayer play];
不知道應該怎麼添加視頻到項目中?應該把視頻文件添加到哪個文件夾中?
試試:
NSString *path=[[NSBundle mainBundle] pathForResource:@"disc" ofType:@"mp4"];
NSURL *fileURL=[NSURL fileURLWithPath:path];
theMoviPlayer = [[MPMoviePlayerController alloc] initWithContentURL:fileURL];
......