我试图在启动屏幕显示后直接播放视频,但是我看到的只是黑屏,状态栏显示在顶部。目前,这就是应用程序所做的一切,所以据我所知,没有其他事情会停止视频播放。
视频在 iPad 上播放没有问题,其他方面似乎是正确的格式等等。我的目标是 iOS 7,我尝试过使用不同的视频,也尝试过使用 MPMoviePlayerViewController。所有人都以相同的结果结束。
这是我正在使用的代码。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSURL *movieURL = [[NSBundle mainBundle] URLForResource:@"IntroMovie" withExtension:@"mov"];
MPMoviePlayerController *moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL:movieURL];
[moviePlayer prepareToPlay];
[self.window addSubview:moviePlayer.view];
[moviePlayer play];
return YES;
}