iOS 播放flash視訊檔案
阿新 • • 發佈:2019-02-17
1.將swf視訊轉換成html。--閃客精靈
會出現兩個檔案(html,js)
2.在html檔案最後面新增上
</script>
<script>
此處把js的內容全部粘帖過來即可
</script>
</body>
</html>
3.
UIWebView * webView = [[UIWebViewalloc]initWithFrame:CGRectMake(10,50, 300, 250)];
NSString *bundlePath=[[NSBundle mainBundle]bundlePath];
NSString *path=[bundlePath
NSURL *url=[NSURL fileURLWithPath:path];
NSURLRequest *request=[NSURLRequestrequestWithURL:url];
NSLog(@"%@",url);
[webView setDelegate:self];
webView.scalesPageToFit=YES;
[webView loadRequest:request];
[self.viewaddSubview:webView];