Reputation: 213
I am having a hard time understand Core Data for cocoa. Now I have read a couple different books regarding programming on OS X and I get the fundamentals of Core data, creating a model and accessing the information through key bindings of interface builder; but now I am looking for information about how to access the information through code like to be able to compare an object to all the others to make sure there isn't any duplicates.
Now I have tried reading apple's guide and it is still little over my head (I am still a beginner). But if someone could point to a good tutorial that would be helpful.
Upvotes: 0
Views: 120
Reputation: 96333
There are several guides besides the Core Data Programming Guide that are relevant:
I got the last two from the “Related Documents” section of the CDPG.
Not quite so Core Data/data-modeling related, but still useful for applying Core Data, are the documents on using Bindings:
Bindings makes it easier to use built-in Cocoa views to display the data you keep in your model.
You'll also find the framework references worth bookmarking:
Upvotes: 4
Reputation: 7303
I learned by actually doing. This is where I started. It's a pretty good tutorial.
Edit: I forgot two other tutorials I followed:
Upvotes: 0