I am migrating from MPMoviePlayer to AVPlayer/AVPlayerViewController. Everything works fine, except that when I zoom to full screen via the on screen control, after the movie finished playing, the full screen mode does not go away. I am running this on iOS 9 beta 2.
Here's my code:
AVPlayerItem *playerItem = [AVPlayerItem playerItemWithURL:url];
self.player = [AVPlayer playerWithPlayerItem:playerItem];
self.playerController = [[AVPlayerViewController alloc] init];
self.playerController.player = self.player;
self.playerController.view.frame = self.imageView.frame;
[self.view addSubview:self.playerController.view];
[self.player play];
NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
[notificationCenter addObserver:self selector:@selector(stopVideo:) name:AVPlayerItemDidPlayToEndTimeNotification object:nil];
When the movie stop, I run the following stopVideo code:
[self.player pause];
[self.playerController.view removeFromSuperview];
When the movie stop, if the movie is not in full screen, the view will be removed. However, if the video is in full screen mode, the full screen mode stays and Done cannot work! Any solutions?