可能重复:
从文档目录加载 PDF - iPhone
我正在尝试从文档目录加载文件。这是我的代码:
// Get Documents Directory
NSArray *searchPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectoryPath = [searchPaths objectAtIndex:0];
NSString *path = [NSString stringWithFormat:@"%@/%@.pdf", documentsDirectoryPath, appDelegate.issueToLoad];
NSLog(@"PATH: %@", path);
//Display PDF
NSURL *pdfURL = [NSURL fileURLWithPath:path];
NSLog(@"URL: %@", pdfURL);
pdf = CGPDFDocumentCreateWithURL((CFURLRef)pdfURL);
但是文件没有加载,我相信这是因为当路径转换为 NSURL 时,它会自动添加百分比转义。这个问题的最佳解决方案是什么?
谢谢