I\'d like to get an array of the attributes for my NSManagedObject
so I can use KVO to export them. I can create an array manually and then iterate through it, howe
Thanks Joshua. Here's code that I used in case any one would like to see a hard example:
NSString *entityName = NSStringFromClass([myEntity class]);
NSEntityDescription *entityDescription = [self entityDescriptionWithEntityName:entityName];
NSDictionary *attributes = [entityDescription attributesByName];
NSArray *attributeNames = attributes.allKeys;