Is it posible to configure superclass for CoreData Entities subclassing? I want to change NSManagedObject to my subclass of NSManagedObject.
Thanks
Is it posible to configure superclass for CoreData Entities subclassing? I want to change NSManagedObject to my subclass of NSManagedObject.
Thanks
You can subclass NSManagedObject
and set it as the class e.g. MyManagedObject
in the image below but you will still have to set this for all the entities in your datamodel
. There is no way to set your own managed object class which can be used for all entities by default it can only be NSManagedObject.