NSManagedObject is a generic class that implements all the basic behavior required of a Core Data model object.
I am creating a framework that allows me to use Core Data. In the framework's test target, I have configured …
core-data nsmanagedobject nsmanagedobjectcontextI have a data model for Formula 1 races with 3 entities: RacingActor: Abstract entity Pilot: inherits from RacingActor Team: inherits from …
xcode core-data abstract-class nsmanagedobjectSo, my scenario is this: I have an NSManagedObject subclass in my iOS application, and as a property I want …
ios core-data nsmanagedobjectI have a fetchedResultsController with a predicate, where "isOpen == YES" When calling for closeCurrentClockSet, I set that property to NO. …
objective-c ios nsfetchedresultscontroller nsmanagedobject nsmanagedobjectcontextI have a custom class, which is a subclass of NSManagedObject. I would like to store it in a dictionary, …
iphone cocoa-touch ios nsdictionary nsmanagedobjectI was trying to create NSManagedObject subclasses (2 related entities) automatically in Xcode. They are generated like this: However, before I …
ios xcode nsmanagedobject objective-c-categoryI know with SwiftyJSON you can convert the objects from JSON to Swift. Does SwiftyJSON allows you to go back? …
swift nsmanagedobject swifty-jsonMy iOS app uses core data via multiple threads. I am getting some crash reports with the following message: "'NSObjectInaccessibleException', …
ios multithreading core-data crash nsmanagedobjectI am a noob at core data, so here goes. I have a core data object, for example student. The …
ios core-data nsmanagedobjectI am trying to use a custom class with swift and CoreData as a transformable object. I have been wasting …
ios swift core-data nsmanagedobject transformable