AVPlayer播放音频但视频冻结

gua*_*azo 6 video objective-c ios avplayer

我有两个UIViewControllers有一个AVPlayer应该播放视频文件时,他们被推入UINavigationController:

-(void)viewWillAppear:(BOOL)animated{

    videoView = [[UIView alloc]initWithFrame:self.view.frame];

    NSString *filepath = [[NSBundle mainBundle] pathForResource:@"myVideo" ofType:@"mov"];
    NSURL *fileURL = [NSURL fileURLWithPath:filepath];
    self.avPlayer = [AVPlayer playerWithURL:fileURL];

    AVPlayerLayer *foregroundLayer = [AVPlayerLayer playerLayerWithPlayer:self.avPlayer];
    self.avPlayer.actionAtItemEnd = AVPlayerActionAtItemEndNone;
    foregroundLayer.frame = self.view.frame;
    foregroundLayer.videoGravity = AVLayerVideoGravityResizeAspectFill;

    [videoView.layer addSublayer:foregroundLayer];

    [self.view addSubview:videoView];

    self.avPlayer.actionAtItemEnd = AVPlayerActionAtItemEndNone;

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(playerItemDidReachEnd:)
                                                 name:AVPlayerItemDidPlayToEndTimeNotification
                                               object:[self.avPlayer currentItem]];
}

-(void)viewDidAppear:(BOOL)animated{

    [self.avPlayer play];
}

-(void)playerItemDidReachEnd:(NSNotification *)notification {

    [self.navigationController popViewControllerAnimated:NO]
}
Run Code Online (Sandbox Code Playgroud)

我第一次推动任何UIViewControllers播放效果都很好.但在那之后,如果我再推它们中的任何一个声音,但视频会冻结.

我尝试过使用MPMoviePlayerViewController但行为是一样的.有什么想法吗?