I created my own class that I want Core Data to use instead of NSManagedObject
:
@interface MyManagedObject: NSManagedObject {
id delegate;
}
<
Take a look at MOGenerator. It'll help with the regenerating the managed object class files at least: it makes you two files for each one. one that you edit and one that is automatically generated. When you regenerate the latter, the former is untouched.
http://digitalflapjack.com/blog/2010/mar/26/mogeneratorftw/