您好,我想在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
答案 0 :(得分:0)
您可以在此处使用开源项目:https://github.com/blizzard-op/VideoPlayerKit
您可以按[VideoPlayerKit initWithContainingViewController:optionalTopView:hideTopViewWithControls:];
可选属性显示在我提供的链接上。