objectWithFieldNAme Best Practice for CoreData
- by Rafael
Hello,
I'm trying to implements some methods for my CoreData models and I'm wonndering if the way I'm doing it is a good practice. I want to implement methods of the type getObjectsWithFieldName. This methods could be used by severals views. So the way I'm doing it is implementing a Class method in the model in the following way:
+(NSArray *)getObjectWithFieldName:(NSString *)fieldName andContext:(NSManagedObjectContext *) context;
Is this a good practice? Or there is another way to do it for iPhone Development?
Thanks in advanced.