在我的应用程序中,我在包含以下代码的视图之一上播放视频
NSURL *url = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"bgVideo" ofType:@"mov"]];
player = [[MPMoviePlayerController alloc] initWithContentURL:url];
[player setControlStyle:MPMovieControlStyleNone];
player.view.frame = CGRectMake(35, 190, 245, 156);
[self.view addSubview:player.view];
[player play];
[player.view setBackgroundColor:[UIColor clearColor]];
我在viewWillAppear方法上写了这段代码
但是当我最初来到这个视图时,我的 MPMoviePlayerController 在开始视频之前显示黑屏几分之一秒。
我不想第二次黑屏。
我该怎么办?
提前谢谢。