Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 207
JOKe Avatar asked Dec 01 '09 10:12

JOKe


1 Answers

I had the same problem. Just add:

self.moviePlayerViewController.view.userInteractionEnabled = NO;
like image 155
Obiwahn Avatar answered Oct 18 '22 14:10

Obiwahn