从Bundle获取pdf文件

时间:2014-04-03 14:52:47

标签: objective-c pdf bundle nsbundle

我创建了设置包enter image description here

我做到了。因为我需要捆绑中的serf作为文件夹。例如FileManager。 下面你可以看到。 enter image description here

我在Finder中使用节目内容打开了会议。使用pdf文件放入文件夹。我尝试使用代码

在设备(iPhone 5)上获取这些pdf文件
NSString *bundlePath = [[NSBundle mainBundle] pathForResource:@"meeting" ofType:@"bundle"];

NSString *filePathPdf = [[NSBundle bundleWithPath:bundlePath] pathForResource:theFileName ofType:@"pdf"];

但* filePathPdf为零。 Xcode找不到它们。

enter image description here

我做错了什么?

PS:我找到了如何加载pdf文件的方法,但我认为这是错误的方法。 我将session.bundle文件夹与pdf文件放在一起,并将相同的文件夹放入主包中。 加载路径:

        NSString *fileNamePdf = [self.contents objectAtIndex:indexPath.row];
        NSString* theFileName = [[fileNamePdf lastPathComponent] stringByDeletingPathExtension];
        NSString *filePathPdf = [[NSBundle mainBundle] pathForResource:theFileName ofType:@"pdf"];

从主包加载的Pdf文件。但pdf文件的引用来自meeting.bundle

也许有人知道如何成功工作?

0 个答案:

没有答案