what approach for adding custom methods to Core Data managed objects in separate files? In particular the requirements would be I guess:
- don't want to touch the XCode4 generated classes (i.e. so can regenerator them anytime and not have to redo changes within them)
- can effectively add methods to the generated classes (assumption is the class names don't change)
Note - I'm aware of mogenerator but I'm not happy with it entirely at the moment noting https://github.com/rentzsch/mogenerator/issues/55
Would the simple and best answer be just Objective-C: Categories?