Hi I want to add some custom controls like a UIButton on movieplayer of UIWebView when it is loaded from that webview. Is there any possible way to access the movieplayer of uiwebview or override it with normal MPMoviePlayerController.
UPDATE
ok you can access it as follows first add notification
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(VideoEnterFullScreen:) name:@"UIMoviePlayerControllerDidEnterFullscreenNotification" object:nil];
and then
-(void)VideoEnterFullScreen:(NSNotification*)notification
{
id moviePlayer = notification.object;
NSLog(@"");
}
But the problem is I cannot access any properties of this object that is UIMoviePlayerController