我知道我可以从托管对象的实例中获取属性数组,如下所示:
[[[myManagedObject entity] attributesByName] allKeys]
但是,如果我不想实例化 myManagedObject,而只想向其类询问其属性数组,该怎么办?谢谢
Best Answer-推荐答案 strong>
您可以从托管对象上下文中获取实体描述
NSEntityDescription *entityDesc =
[NSEntityDescription entityForName"YourEntityName"
inManagedObjectContext:yourContext];
或来自托管对象模型
NSEntityDescription *entityDesc = [yourModel entitiesByName][@"YourEntityName"];
无需实例化该实体的实例,
然后检索属性,例如
NSArray *attributes = [[entityDesc attributesByName] allKeys];
关于ios - 从托管对象子类获取属性数组的类方法?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/19869297/
|