我进行了很多搜索,但无法从Documents文件夹使用vfr-reader打开PDF。
NSString *filePath = @"/Users/***/Library/Application Support/iPhone Simulator/5.0/Applications/F2B7E9DE-9996-4F05-BC81-2A2889B4F504/Documents/Number1.pdf";
ReaderDocument *document = [ReaderDocument withDocumentFilePath:filePath password:password];
if (document != nil)
{// document comes nil here
ReaderViewController *readerViewController = [[ReaderViewController alloc] initWithReaderDocument:document];
readerViewController.delegate = self; // Set the ReaderViewController delegate to self
[self.navigationController pushViewController:readerViewController animated:YES];
}
我确定文件路径与pdf文件完全一致。
在阅读器的示例代码中,它从主包中打开pdf。但是我需要从资源文件夹中打开。
谢谢
最佳答案
我面临着同样的问题,也许你也有同样的问题。
如果您不使用ARC,则只需将-fobjc-arc写入构建界面中的每个pdf阅读器文件。那将解决您的问题。
关于ios - 无法创建ReaderDocument Vfr-Reader,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14263953/