0

我正在使用下面的代码尝试在我的 iPhone 应用中播放视频。但是,我不明白为什么它不起作用。

NSURL *url = [NSURL fileURLWithPath:filePath];
MPMoviePlayerController* moviePlayer =  [[[MPMoviePlayerController alloc] initWithContentURL:url] autorelease];

moviePlayer.controlStyle = MPMovieControlStyleDefault;
moviePlayer.shouldAutoplay = YES;
[self.view addSubview:moviePlayer.view];
[moviePlayer setFullscreen:YES animated:YES];
4

1 回答 1

1

你的游戏声明在哪里?

[moviePlayer play];

于 2012-06-25T10:28:58.303 回答