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];