If I create an single-view application with XCODE 5, I can detect tap gestures on the MPMoviePlayerController during a full-screen movie playback without problems.
However, if I embed the main ViewController in a Navigation Controller, I can no longer detect taps during the full-screen movie playback.
I reason I'm using the Navigation Controller is mainly because I need to switch from full-screen video playback to a full-screen camera preview when the user taps the screen, and when the user taps again, it should go back from the camera preview to the video playback.
I've tried different approaches but I can't seem to detect the screen tap during movie playback when a Navigation Controller is present.
Any hints on how to achieve this?
Thanks.