Use this code to turn off full screen in MPMoviePlayerViewController .
moviePlayerController.moviePlayer.controlStyle = MPMovieControlStyleNone;
or check this to enter a view controller.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(Enter:) name:MPMoviePlayerWillEnterFullscreenNotification object:nil]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(Enter:) name:MPMoviePlayerDidEnterFullscreenNotification object:nil];
I hope this code is helpful to you.
source share