我正在尝试使用
将文件保存在文档目录中NSString *documentDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSString *filename=[NSString stringWithFormat:@"abc 1.pdf",];
NSString *pdfLocation = [documentDirectory stringByAppendingPathComponent:filename];
我正在使用网络视图打开此文件
NSURL *url = [NSURL URLWithString:pdfLocation];
NSURLRequest *urlRequest = [[NSURLRequest alloc] initWithURL:url];
[self.webView loadRequest:urlRequest];
[urlRequest release];
如果文件名有空格,则会失败。如何保存文件,以便保留文件名中的空格。
答案 0 :(得分:3)
UIWebView
需要文件网址。将行更改为:
NSURL *url = [NSURL fileURLWithPath:pdfLocation];