I'm trying to conform to the MVC paradigm
in my iOS app. My model consists of entities stored in coreData which I have set up using the xcdatamodel
file.
I want to add some custom methods to these entities in order to keep the Model part separate from the Controller.
In previous versions of Xcode the autogenerated managedObject
classes were added automatically to my project and I could add custom methods to these classes. Now I no longer see these auto genterated classes.
I have selected 'Class Definition' for the codegen.
Do I need to create an additional class for each entity to enable custom methods on those entities
? Or is there a better way to go about this.