我的MPMediaPlayer控制器出了什么问题?

时间:2010-10-12 04:04:57

标签: ios4 mpmovieplayercontroller

大家好 我在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模拟器。