Web ビューを使用してビデオをダウンロードしたいのですが、ダウンロード方法がわかりません。私のビデオリンクはこちら
私が使用しているビデオを再生するためのサンプルコードは
-(void)embedYouTubeInWebView:(NSString*)url theWebView:(UIWebView *)aWebView {
NSString* html = [NSString stringWithFormat:@"%@", url];
[aWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:html]]];
}
- (void)viewDidLoad
{
[super viewDidLoad];
[self embedYouTubeInWebView:@"http://player.vimeo.com/video/32983838" theWebView:myWebView];
// Do any additional setup after loading the view, typically from a nib.
}
誰かこのビデオをダウンロードするのを手伝ってくれませんか?