- (IBAction)downloadFile:(id)sender {
[self.spinner startAnimating];
NSURL *URL = [NSURL URLWithString:@"/image/w%3D2048/sign=6be5fc5f718da9774e2f812b8469f919/"];
NSURLRequest *request = [NSURLRequest requestWithURL:URL];
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDownloadTask *downloadTask = [session downloadTaskWithRequest:request
completionHandler:
^(NSURL *location, NSURLResponse *response, NSError *error) {
[self showResponseCode:response];
NSLog(@"%@", location);
NSString *documentsPath = [self getDocumentsPath];
NSURL *documentsDirectoryURL = [NSURL fileURLWithPath:documentsPath];
NSURL *fileURL = [documentsDirectoryURL URLByAppendingPathComponent:[[response URL] lastPathComponent]];
NSFileManager *fileManager = [NSFileManager defaultManager];
if ([fileManager fileExistsAtPath:[fileURL path] isDirectory:NULL]) {
[fileManager removeItemAtURL:fileURL error:NULL];
}
[fileManager moveItemAtURL:location toURL:fileURL error:NULL];
NSURLRequest *showImage_request = [NSURLRequest requestWithURL:fileURL];
[self.webView loadRequest:showImage_request];
[self.spinner stopAnimating];
}];
[downloadTask resume];
}
- (NSString *)getDocumentsPath {
NSArray *documents = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsPath = documents[0];
return documentsPath;
}