Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In one of my application, I don't want to show any video controllers. But I need to get the touch on the media player view. I need to do some other action on touch on the movie player. How can I implement that. Please help

Thanks in advance.

share|improve this question

2 Answers

up vote 2 down vote accepted

You can always attach a UITapGestureRecognizer to the view and handle the taps.

UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
[moviePlayer.view addGestureRecognizer:tap];
[tap release];

And handle the tap in handleTap:

- (void)handleTap:(UITapGestureRecognizer *)gesture {
    // Do some other action as intended.
}

Of course this works only on iOS 3.2 and later.

share|improve this answer
Thank you!!... I tried TapGuesterRecognizer but made a small mistake..Thank you for correcting me :) – cherukkayi Jun 17 '11 at 11:01
Is that possible to do in iOS 3 onwards?. I mean other than GuesterRecognizer. Or do I need to subclass MoviePlayerController to get touch events?. – cherukkayi Jun 17 '11 at 11:13
@cherukkayi Prior to 3.2, the controller took the entire screen and managed the view itself. You can't change the controlStyle attribute prior to 3.2 either. – Deepak Danduprolu Jun 17 '11 at 11:17
1  
@Deepak, what you state in your last comment is mostly incorrect. Yes, UIGestureRecognizer did not exist prior to iOS 3.2 (and even within 3.2 it was kinda beta). For the rest, MPMoviePlayerController was allways allowing the removal of the controls (settings controlStyle), it just did not support embedded playback. The solution for recognizing taps prior to 3.2 is adding a custom view on top of MPMoviePlayerController and trapping touches. – Till Jun 19 '11 at 15:09
I got your last statement. But there wasn't a controlStyle property, was it? – Deepak Danduprolu Jun 19 '11 at 15:19
show 1 more comment

You can also use this delegate method of UIGestureRecognizer.

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.