NSUrlConnection を使用してファイルをダウンロードし、ファイルをドキュメント ディレクトリに保存してから、Web ビューで開こうとしています。
私はコードを使用しています:
- (IBAction)down:(id)sender {
// create the request
url = [[NSURL alloc]initWithString:urlbox.text];
NSLog(@"%@",url);
NSURLRequest *theRequest=[NSURLRequest requestWithURL:url
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
NSURLConnection *theConnection;
theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
if (theConnection) {
NSMutableData *receivedData;
receivedData=[NSMutableData data];
}
ファイルをダウンロードします。ファイルを保存して Web ビューで開くためのコードを誰かが教えてくれたら、それは素晴らしいことです。
ありがとう