In my app, I have the following CoreData model : a Foo has many Bar Entities : Foo <---->> Bar. To add a new Foo entity, I create a new MOC in which I create a new instance of Foo. This displays t
I am using multithreading while loading data from the database. I am doing the following dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0),
I have an Mac Application using a NSPersistentDocument. I want to get notified when Objects are deleted to save this information using Core Data. So I\'m listening for NSManagedObjectContextObjectsDid
I have some calculated values in the core data database that I need to update just before saving. Basically I\'m numbering some entities in order to ease up the navigation between them.
In my iPad application, I am using Multithreading to read data from my database and hence I am using different manged object contexts as explained Fred McCann\'s blog
I have 2 entities Locations and Items. Many to many relationship. So each item can have multiple locations and any location can have multiple items.
I am parsing JSON string to create new managed objects in a separate thread and in a separate managed object context. Later I want to merge the changes in the main thread by listening to NSManagedObje
My understanding of an inverse relationship in CoreData is that these two statements should be equivalent:
I am not quite sure how to word this question without explaining what I am trying to do. I have a managed object context filled with (essentially) cir开发者_Python百科cles that have an x,y coord for
I have an NSManagedObject that has some of its properties initialized at the start of the program. When I refer to this object later, it appears to be faulted, and the properties are not accessible. I