NSManagedObject is a generic class that implements all the basic behavior required of a Core Data model object.
I have two entities, each displaying on its own UITableView section. I've enabled editing to allow the user to delete …
iphone core-data nsmanagedobjectI have an Xcode-generated NSManagedObject class for my CoreData model. @objc(SomeClass) class SomeClass : NSManagedObject { /* ... */ } It is defined in a …
ios swift visibility nsmanagedobjectI have an attribute modificationDate in my Entity A. I want to set its value whenever NSManagedObject is saved. However, …
objective-c core-data nsmanagedobjectI have an Objective-C model class MyType. This class is used in Swift code: NSEntityDescription.insertNewObjectForEntityForName("MyType", inManagedObjectContext: context) as! …
swift core-data casting nsmanagedobjectI am running into major issues developing my iphone app. here is the full error: CoreData: error: Serious application error. …
iphone ios core-data nsmanagedobject nsnotificationcenterI have some code that loops through an array of NSManagedObjects and stops when it finds a certain record that …
objective-c core-data nsmanagedobjectmy NSManagedObjectModel is returning nil eventhough the path is correct. NSString *modelKey = [NSString stringWithFormat:@"/%@/Model", name]; NSString *modelPath = [((Configuration *)[Configuration …
iphone nsmanagedobjectPossible Duplicate: Store But Don't Save NSManagedObject to CoreData? I need to make an NSManagedObject without saving it, how can …
ios objective-c core-data nsmanagedobject nsmanagedobjectcontextI'm setting values for properties of my NSManagedObject, these values are coming from a NSDictionary properly serialized from a JSON …
objective-c json parsing nsmanagedobject nsnullMy application has two tab bars... Each takes the user to a tableviewcontroller that presents him with a list of …
iphone uitableview core-data nsfetchedresultscontroller nsmanagedobject