UIWebView で動画を再生しました。
私はこのコードを使用しました
NSString *Str = @"<video controls width=458 height=202 poster=Image.png>
<source src=\"http://Path of the video/Video.mp4\"> </video>";
NSString *path = [[NSBundle mainBundle] pathForResource:@"Image"
ofType:@"png"];
[web loadHTMLString:Str baseURL:[NSURL fileURLWithPath:path]];
一時停止ボタンをタップせずに一時停止またはビデオを停止できますか?
解決策はありますか?