1

我正在尝试使用下面提到的代码在本地下载我的 UIWebView 上的 PDF。

将 UIWebView 显示的 PDF 保存到本地

当我输入时NSLog(@"pdfille==%@", pdfFile);,我看到输出为pdfille==(null)

知道为什么文件没有被保存吗?

是因为我在模拟器上而不是在 iPad 上运行 iOS 程序吗?

4

2 回答 2

0
NSString *filePath = [cachePath stringByAppendingPathComponent:@"someName.pdf"]

PDF将在此路径中记录路径并使用Finder>Go>Go to folder

于 2013-05-17T08:56:45.040 回答
0

我使用了委托方法。

- (BOOL)webView:(UIWebView *)webview 
shouldStartLoadWithRequest:(NSURLRequest *)request 
navigationType:(UIWebViewNavigationType)navigationType {

    NSString *myURL = request.URL.absoluteString;
    NSLog(@"here I get proper URL %@", myURL);    

}
于 2013-05-18T09:13:28.973 回答