我正在尝试从 https url 下载文件。使用 http 可以正常工作,但对于 https 就不行了。我将在下面发布我当前的代码,但出于个人目的,我不想发布用于 URL 的 IP 地址,因此我将在其位置放置“ipAddress”。我应该提到 https 来自自签名证书。
-(void)downloadPDF: (NSInteger)numDay {
NSString *homeDir = NSHomeDirectory();
NSString *filePath = [NSString stringWithFormat: @"%@/%@%@%@", homeDir, @"Documents/", @"File", @".tar"];
NSString *dirPath = [NSString stringWithFormat: @"%@/%@", homeDir, @"Documents/"];
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@%@", @"ipAddress", @'File", @".tar"]];
NSData *urlData = [NSData dataWithContentsOfURL:url];
[urlData writeToFile:filePath atomically:YES];
[mywebview loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:filePath]]];
}
我已经尝试了很多其他的东西,从使用 NSURLConnection 到下载整个库,但我一定错过了一些东西。我也有:
- (void)connection:(NSURLConnection *)connection willSendRequestForAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge{
}
在我的应用程序委托 .m 文件中,如其他文件中所述。任何帮助将不胜感激,如果您需要更多信息,请在评论中告诉我。