大家好 我在iPhone开发中创建了简单的电影播放器。但我只得到了vedio的声音。 这是我的代码(按钮点击时),
-(IBAction)playMe{
NSBundle *bundle=[NSBundle mainBundle];
NSString *moviePath=[bundle pathForResource:@"iiii" ofType:@"mp4"];
NSURL *movieURL = [NSURL fileURLWithPath:moviePath];
MPMoviePlayerController *theMovie=[[MPMoviePlayerController alloc] initWithContentURL:movieURL];
theMovie.scalingMode = MPMovieScalingModeAspectFill;
[theMovie play];
[self.view addSubview:theMovie.view];
}
当我点击时,我只有声音而不是电影。我还使用了iOS 4.1模拟器。
答案 0 :(得分:0)
可能是因为你没有设置框架来显示电影播放器试试这个。
theMovie.view.frame=CGRectMake(0,0,300.400);
如果这不起作用 你可以查看以下教程
http://www.edumobile.org/iphone/iphone-programming-tutorials/how-to-play-video-in-iphoneos4/