代码片段:
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];
......