An instance of NSManagedObjectContext represents a single “object space”. Its primary responsibility is to manage a collection of managed objects.
Question: How do I get my child context to see changes persisted on the parent context so that they trigger …
ios core-data nsfetchedresultscontroller nsmanagedobjectcontextI have a problem that is almost identical to the problem described by this person here, but it hasn't get …
objective-c ios core-data nsfetchedresultscontroller nsmanagedobjectcontextI have a fetchedResultsController with a predicate, where "isOpen == YES" When calling for closeCurrentClockSet, I set that property to NO. …
objective-c ios nsfetchedresultscontroller nsmanagedobject nsmanagedobjectcontextIs initializing a NSManagedObjectContext using NSMainQueueConcurrencyType only for the situation where that MOC has a child MOC that was initialized …
iphone ios cocoa-touch core-data nsmanagedobjectcontextI am mapping Json Data from Server using Restkit and I am Displaying those data by fetching from db. There …
objective-c ios core-data nsmanagedobjectcontext faultI have a main NSManagedObjectContext that's created in the appDelegate. Now, I'm using another NSManagedObjectContext for editing/adding new objects …
objective-c cocoa core-data nsmanagedobjectcontextThe documentation says: - (void)reset Returns the receiver to its base state. Discussion All the receiver's managed objects are “…
objective-c core-data nsmanagedobjectcontextI'm creating an NSManagedObjectContext in a private queue to handle data updates I take from files and/or services: NSManagedObjectContext *…
ios core-data asynchronous synchronization nsmanagedobjectcontextI have a nice working iphone app that works with core data. I use a NSFetchedResultsController/NSManagedObjectContext as described in …
iphone core-data nsmanagedobjectcontextI was working through Core Data Stack in Swift - Demystified but when I got to the line self.context = …
cocoa core-data nsmanagedobjectcontext