如何自定义UIWebView的MoviePlayer

时间:2014-07-16 12:00:54

标签: ios html5 uiwebview mpmovieplayercontroller uiwebviewdelegate

您好,我想在UIWebView的电影播放器​​上添加一些自定义控件,例如UIButton,当它从该webview加载时。有没有办法访问uiwebview的电影播放器​​或用普通的MPMoviePlayerController覆盖它。

更新

好的,您可以按照以下方式首先添加通知

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(VideoEnterFullScreen:) name:@"UIMoviePlayerControllerDidEnterFullscreenNotification" object:nil];

然后

-(void)VideoEnterFullScreen:(NSNotification*)notification

{

 id moviePlayer = notification.object;  
 NSLog(@"");

}

但问题是我无法访问此对象的任何属性 UIMoviePlayerController

1 个答案:

答案 0 :(得分:0)

您可以在此处使用开源项目:https://github.com/blizzard-op/VideoPlayerKit

您可以按[VideoPlayerKit initWithContainingViewController:optionalTopView:hideTopViewWithControls:];

初始化它

可选属性显示在我提供的链接上。