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