从核心数据中检索数据

发布于 2024-11-08 17:21:57 字数 684 浏览 0 评论 0原文

我使用 xcdatamodel 定义许多基于 CoreData 数据实体的类。这非常有效,我可以根据Apple的示例检索它们:

http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/CoreData/Articles/cdFetching.html

然而,我所追求的是一种打包的方法将方法获取到另一个类中,但我有几个问题...... 例如

MyDataAccessClass *mdac = [[MyDataAccessClass alloc] init]; myFetchedData = [mdac fetchData];

Q1.如果我这样做,在类中定义 NSManagedObjectContext 可以吗?还是仍然需要在我的视图控制器中引用它并传递给我的“MyDataAccessClass”? Q2。对我来说,在 XCode 为数据模型中的实体创建的类中设置数据检索方法是有意义的。虽然每次我尝试这样做,然后自动更新这些类,因为它们是由 XCode 自动生成的,但它们会覆盖我定义的任何方法。

提前致谢!

I'm using an xcdatamodel to define a number of classes based upon CoreData data entities. This is working great and I can retrieve them in accordance to Apple's examples:

http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/CoreData/Articles/cdFetching.html

What I'm after however, is a way to package the fetch method up into another class, but I have a couple of questions...
e.g.

MyDataAccessClass *mdac = [[MyDataAccessClass alloc] init];
myFetchedData = [mdac fetchData];

Q1. If I do this, is it ok that the NSManagedObjectContext is defined in the class? or does it still need to be referenced in my view controller and passed to my 'MyDataAccessClass'?
Q2. It makes sense to me to have the data retrieval methods set up in the classes created by XCode for the entities in the data model. Although every time I try to do this, then update those classes automatically because they are automatically generated by XCode, they overwrite any methods I've defined.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不知在何时 2024-11-15 17:21:57

您也许能够在单独的类中创建一个新的 NSManagedObjectContext - 不确定是否会出现任何问题,因为已经在 appDelegate 中创建了一个。我所做的就是您在第一季度第二部分中所建议的,其中我将 NSManageObjectContext 传递到单独的方法类中,这样我就可以执行以下操作:

myFetchedData = [mdac fetchData:currentNSManagedObjectContext];

You might be able to create a new NSManagedObjectContext in the seperate class - not sure if there will be any issues with that since one is already created in the appDelegate. What I did was what you suggest in the second part of Q1, where I pass the NSManageObjectContext into the seperate method class so then I can do something like:

myFetchedData = [mdac fetchData:currentNSManagedObjectContext];

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文