hi :) I have a similarly issue like in Working with the same NSManagedObjectContext in multiple tabs
My Cocoa/Application has a Managed Object Context on the main thread. When I need to update my data my program will:
I am implementing \"duplicate\" functionality in my iOS application. I\'m using the following workflow:
) for several reasons, I have to create 2 ManagedObjectContext, eac开发者_如何学JAVAh one having a different NSPersistentStoreCoordinator (one is NSSqlLiteType, the othe is a NSInMemoryType).
I am struggling with some bizarre behavior in Core Data. I have a fairly standard set-up, using the CoreDataBook example: I have a RootView which is using a NSFetchedResultsController to display list
As the title suggests im working with a Core Data Application which gets filled with objects in different background threads (XML Parsing)
I am having a problem with my ipad app. I\'ve got a view that is accessed in 2 ways, if i go in one way it works perfectly.If I go in through another though, it crashes when saving the context.
I am passing data to the view using this method: nextViewController = [[AfricanSwallowViewCont开发者_C百科roller alloc] initWithNibName:@\"AfricanSwallowView\" bundle:nil];
This is a bit of a tricky one. I have Document entities that are currently bein开发者_Go百科g imported into CoreData from a SQLite database on a background thread. There\'s a separate context for the
I currently do multiple network requests via several threads executing in parallel, thus have a managed object context for each thread, and each thread sets attribute values for Core Data entities. So