この関数を使用して、iPad ( cachedDir ? ) のローカル ファイル システムへの URL を含むコンテンツをダウンロードしようとしています。
- (IBAction)download:(id)sender {
NSURL *url = [NSURL URLWithString:@"http:www.google.de"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setDelegate:self];
[request startAsynchronous];
[request setDownloadDestinationPath:@"/Users/ben/Desktop/my_file.pdf"]; // Which //directory??
}
Apple に拒否されずにできるだけ長くデータを保存するには、パスとしてどのディレクトリを選択する必要がありますか? また、保存したデータを取得するにはどうすればよいですか?
誰か助けてくれませんか?