然而,当我在iPad上尝试相同时,按下播放不会自动进入全屏(你可以点击全屏控制,但我不希望用户有这个选项) – 有没有办法做到这一点?
我的代码是:
- (IBAction)topbutton:(ID)sender { [[NSNotificationCenter defaultCenter] addobserver:self selector:@selector(youTubeFinished:) name:@"UIMovIEPlayerControllerWillExitFullscreenNotification" object:nil]; vIDeoWebVIEw.hIDden=NO; Nsstring *embedcode = [self.detailitem objectForKey:@"youtubeEmbedCodeBeginner"]; [[self vIDeoWebVIEw]loadHTMLString:embedcode baseURL:nil];}
和:
-(voID)youTubeFinished:(NSNotification *)notification{ // your code here vIDeoWebVIEw.hIDden=YES;}
任何帮助,将不胜感激
解决方法 试试这个selector:@selector(someSelector)name:@“UIMovIEPlayerControllerDIDEnterFullcreenNotification”object:nil]
//适用于iOS 4.3及以上版本:
UIMovIEPlayerControllerDIDEnterFullscreenNotification
UIMovIEPlayerControllerDIDExitFullscreenNotification
//适用于iOS 4.2及以下版本:
UIMovIEPlayerControllerDIDEnterFullcreenNotification
UIMovIEPlayerControllerDIDExitFullcreenNotification
谢谢
总结以上是内存溢出为你收集整理的iphone – UIWebView流媒体youtube没有在iPad上全屏显示全部内容,希望文章能够帮你解决iphone – UIWebView流媒体youtube没有在iPad上全屏显示所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)