I have subclassed MPMoviePlayerController...
@interface CustomMoviePlayerController : UIViewController
{
NSURL *movieUrlPath;
MPMoviePlayerController *mp;
...
I also have iPad application (with splitView). On the right side in the center I load this player and start playing movie...
cPlayer = [[CustomMoviePlayerController alloc] initWithUrlPath:title];
[self.view addSubview:cPlayer.view];
[cPlayer readyPlayer:title];
I have touchBegin/End methods that detect touch on this player and it works, but when I set player in fullscreen it stop detect toucher. Why touches stop detecting in fullscreen?
[cPlayer.mp setFullscreen:YES animated:YES];