NSURL* url = [NSURL fileURLWithPath:filePath];NSURLRequest* request = [NSURLRequest requestWithURL:url];[webVIEw loadRequest:request];
你能告诉我如何禁用播放按钮或视频应该只在用户点击播放按钮后开始播放?
解决方法- (voID)vIDeoThumb:(Nsstring *)urlString frame:(CGRect)frame { Nsstring *embedHTML = @"\ <HTML><head>\ <style type=\"text/CSS\">\ body {\ background-color: transparent; color: white; }\ </style>\ </head><body style=\"margin:0\">\ <embed ID=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \ wIDth=\"%0.0f\" height=\"%0.0f\"></embed>\ </body></HTML>"; Nsstring *HTML = [Nsstring stringWithFormat:embedHTML,urlString,frame.size.wIDth,frame.size.height]; [webVIEw loadHTMLString:HTML baseURL:nil]; [self.vIEw addSubvIEw:webVIEw]; [webVIEw release];}//Include above function to your page and call it by passing the urlstring[self vIDeoThumb:url:frame];//frame : this parameter needs the size of the thumb you want to use.
我希望这可以帮助你,更好地实现你的目的.
总结以上是内存溢出为你收集整理的iphone – 在UIWebView中自动播放视频全部内容,希望文章能够帮你解决iphone – 在UIWebView中自动播放视频所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)