Search code examples
iphonevideompmovieplayercontroller

IPhone, MPMoviePlayerController how to disable zooming when double tap on the screen?


How can I dissable the strange double tap behaviour when playing movie using MPMoviePlayerController.

The double tap makes zoom/unzoom of the movie and makes some of my gestures in the overlay view to stop working on the double tap area.


Solution

  • I had the same problem. Just add:

    self.moviePlayerViewController.view.userInteractionEnabled = NO;