我正在尝试获取未知类的所有属性和每个属性的类的列表。到那时我得到一个对象所有属性的列表(我递归地做它以获取所有超类)。我在这篇文章中受到启发
+ (NSArray *)classPropsFor:(Class)klass
{
NSLog(@"Properties for class:%@", klass);
if (klass == NULL || klass == [NSObject class]) {
return nil;
}
NSMutableArray *results = [[NSMutableArray alloc] init];
unsigned int outCount, i;
objc_property_t *properties = class_copyPropertyList(klass, &outCount);
for (i = 0; i < outCount; i++) {
objc_property_t property = properties[i];
const char *propName = property_getName(property);
if(propName) {
NSString *propertyName = [NSString stringWithUTF8String:propName];
[results addObject:propertyName];
}
NSArray* dict = [self classPropsFor:[klass superclass]];
[results addObjectsFromArray:dict];
}
free(properties);
return [NSArray arrayWithArray:results];
}
所以现在我想要每个属性的类,我这样做:
NSArray* properties = [PropertyUtil classPropsFor:[self class]];
for (NSString* property in properties) {
id value= [self valueForKey:property];
NSLog(@"Value class for key: %@ is %@", property, [value class]);
}
问题是它适用于 NSStrings 或但不适用于自定义类,因为它返回我为 null。我想递归地创建一个字典,该字典表示一个可以在其中包含其他对象的对象,并且我认为我需要知道每个属性的类,这可能吗?