我正在尝试使用下面提到的代码在我的UIWebView上本地下载PDF。
Save PDF which is displayed by UIWebView locally
当我输入NSLog(@"pdfille==%@", pdfFile);
时,我看到输出为pdfille==(null)
。
知道为什么文件没有被保存?
是因为我在模拟器上运行iOS程序而不是在iPad上运行吗?
答案 0 :(得分:0)
NSString *filePath = [cachePath stringByAppendingPathComponent:@"someName.pdf"]
PDF将在此路径中记录路径并使用Finder> Go>转到文件夹
答案 1 :(得分:0)
我使用了委托方法。
- (BOOL)webView:(UIWebView *)webview
shouldStartLoadWithRequest:(NSURLRequest *)request
navigationType:(UIWebViewNavigationType)navigationType {
NSString *myURL = request.URL.absoluteString;
NSLog(@"here I get proper URL %@", myURL);
}