1
ビデオをiPadにダウンロードするにはどうすればいいですか?私は動画のURLを持っていますので、ダウンロードしてiPadデータベースに保存してオフラインで使用する必要があります。誰も私が問題を解決するのを助けることができますか?ビデオをダウンロードしてipadに保存する方法
私はこのコードを試していますが、ファイルを保存しようとしていません。このコードの後、Media Playerを使用して再生します。しかし、私は遊ぶことができないようにダウンロードされていません。
NSURL *url = // some-URL;
NSData *yourVedioFileData = [[NSData alloc] initWithContentsOfURL:[NSURLURLWithString:url]];
//Store the Data locally as Video File
NSArray *paths= NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *yourFilePath = [documentsDirectory stringByAppendingPathComponent:@"yourVideoName.mov"];
[yourVedioFileData writeToFile:yourFilePath atomically:YES];