I have a UiWebView inside which I open m.youtube.com and when I click one of the Youtube videos, it plays that video in a movieplayer. My requirement is this: I would like to handle the Pause/Play event of that moviePlayer by registering the notification handler. I don't understand how to do that. I did try the following lines in ViewDidLoad (of the UiViewController that has a UIWebView in it ), but the notification handlers were never called. I'll appreciate any help to achieve this.

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(moviePreloadDidFinish:) name:MPMoviePlayerContentPreloadDidFinishNotification object:nil];

[[NSNotificationCenter defaultCenter] addObserver:self 
                                         selector:@selector(playbackStateChanged:) 
                                             name:MPMoviePlayerPlaybackStateDidChangeNotification
                                           object:nil];
link|improve this question
Are you removing the notification observer at viewWillDisappear ? – A-Live Jun 23 '11 at 21:42
No, am not removing it in viewWillDisappear. Should I do that? – Balaji Krishnan Jun 23 '11 at 22:54
Another question is if the observer should be the uiWebView that is inside the uiviewcontroller? Currently I have self as observer in ViewDidLoad. Am I missing something? – Balaji Krishnan Jun 23 '11 at 22:55
Assuming you are not creating any MPMoviePlayerController object, the solution might be to reuse the sample from developer.apple.com/library/ios/#samplecode/MoviePlayer_iPhone/… You can track the video link using shouldStartLoadWithRequest method of your webView delegate, but not sure how do you handle start-playing. – A-Live Jun 24 '11 at 6:30
I am not creating MPMoviePlayerController object. I did look at the sample code and they seem to be creating a MPMoviePlayerController Object and set NSNotifications on that object. I am not sure how to handle notification callbacks from the modal QuickTime player that is invoked when you click youtube videos from a UIWebView. – Balaji Krishnan Jun 24 '11 at 21:29
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.