我是 IOS 开发新手,我正在开发 pdf 应用程序,我需要将 PDF 文件存储在 NSData 变量中,我有 PDF 路径,但是当我尝试将此 pdf 放在 NSData 上时出现此消息错误变量使用dataWithContentsOfFile她是我的简单代码:
NSError *error;
NSString *PdfPath = [NSString stringWithFormat:(@"%@"),document.fileURL ];
NSString *newPath = [PdfPath stringByReplacingOccurrencesOfString:@"file://localhost" withString:@""];
NSLog(@"OriginalPdfPath => %@", newPath);
NSData *pdfData = [NSData dataWithContentsOfFile:newPath options:NSDataReadingUncached error:&error];
注意:pdf 路径采用以下格式: /Users/bluesettle/Library/Application%20Support/iPhone%20Simulator/6.0/Applications/BBEF320E-7E2A-49DA-9FCF-9CFB01CC0402/ContractApp.app/Pro.iOS.Table.Views .pdf
感谢您的帮助