问题描述
- MPMoviePlayerController播放视频
- 代码片段:
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];......
时间: 2024-10-12 09:26:49