An instance of NSManagedObjectContext represents a single “object space”. Its primary responsibility is to manage a collection of managed objects.
I have a large import task I need to do with core data. Let say my core data model look …
ios objective-c core-data nsmanagedobjectcontextI have a really annoying problem, which I just can't seem to get fixed. I have a view when I …
objective-c ios core-data nsmanagedobject nsmanagedobjectcontextIn iOS 5, NSManagedObjectContext has a couple of new methods, performBlock: and performBlockAndWait:. What are these methods actually used for? What …
ios core-data ios5 nsmanagedobjectcontext blockingI am trying to implement CoreData in ios Application,Now I want to Fetch all records from Entity MUSTHAFA My …
objective-c ios core-data nsmanagedobject nsmanagedobjectcontextI have what I assume is a fairly standard setup, with one scratchpad MOC which is never saved (containing a …
cocoa cocoa-touch core-data nsmanagedobject nsmanagedobjectcontextI have a NSManagedObjectContext in which I have a number of subclasses of NSManagedObjects such that some are containers for …
iphone core-data nsmanagedobject nsmanagedobjectcontextMy Cocoa/Application has a Managed Object Context on the main thread. When I need to update my data my …
objective-c cocoa core-data nsmanagedobject nsmanagedobjectcontextMy app sometimes inserts objects into the managed object context that are not meant to necessarily be saved. For example, …
ios objective-c cocoa core-data nsmanagedobjectcontextI am creating a framework that allows me to use Core Data. In the framework's test target, I have configured …
core-data nsmanagedobject nsmanagedobjectcontextRecently I came to know that "You really shouldn't be calling down to the AppDelegate to get the managed object …
ios objective-c core-data nsmanagedobjectcontext appdelegate