如何获取Core Data中MOMD文件的路径
使用
self.managedObjectContent= [NSManagedObjectModel mergedModelFromBundles:nil];
大家好,我已经看到这个问题并在我的代码中 ,但是,我希望能够通过 NSLog 打印文件路径以使用 momd 文件的完整路径进行控制台。问题是我不知道如何使用 Objective C 提取 MOMD 资源的路径,当我尝试记录 managedObjectContent
到控制台时,它最终会打印出非常冗长的神秘数据,而我什至没有这样做关心。那么我该如何获取仅 momd 文件的路径呢?请提供示例代码!提前致谢。
Ey guys, I have seen this question and have used
self.managedObjectContent= [NSManagedObjectModel mergedModelFromBundles:nil];
in my code, however, I would like to be able to print a filepath via NSLog to console with the full path of the momd file. Problem is I don't know how to go about extracting the path to the MOMD resource using objective c, when I try logging managedObjectContent
to console it ends up printing very lengthy arcane data that I don't even care about. So how would I go about getting only the path of the momd file? Sample code please! Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不久前通过查看我的资源文件夹中的文件并意识到它们是 .mom 文件而不是 .momd 文件解决了该问题。因此,搜索具有 .mom 文件扩展名的资源解决了我的问题。
Solved the problem a little while ago by looking at what files were in my resources folder and realizing they are .mom files rather than .momd files. So searching for the resource with the .mom file extension solved my problem.