我正在努力学习Objective-C中的反射。我发现了一些关于如何转储类的属性列表的好信息,尤其是在这里,但我想知道是否可以使用反射设置属性的值。
我有一个键(属性名称)和值(所有NSString
)的字典。我想使用Reflection来获取属性,然后将其值设置为字典中的值。这可能吗?还是我在做梦?
这与字典无关。我只是在用字典输入值。
像这个问题,但目标C.
- (void)populateProperty:(NSString *)value
{
Class clazz = [self class];
u_int count;
objc_property_t* properties = class_copyPropertyList(clazz, &count);
for (int i = 0; i < count ; i++)
{
const char* propertyName = property_getName(properties[i]);
NSString *prop = [NSString stringWithCString:propertyName encoding:NSUTF8StringEncoding]];
// Here I have found my prop
// How do I populate it with value passed in?
}
free(properties);
}
Objective C属性自动符合NSKeyValueCoding
协议。可以使用setValue:forKey:
通过字符串属性名称设置任何属性值。
NSDictionary * objectProperties = @{@"propertyName" : @"A value for property name",
@"anotherPropertyName" : @"MOAR VALUE"};
//Assuming class has properties propertyName and anotherPropertyName
NSObject * object = [[NSObject alloc] init];
for (NSString * propertyName in objectProperties.allKeys)
{
NSString * propertyValue = [objectProperties valueForKey:propertyName];
[object setValue:propertyValue
forKey:propertyName];
}
NSObject
实现的NSKeyValueCoding
协议(请参见NSKeyValueCoding.h)包含方法-setValuesForKeysWithDictionary:
。此方法完全采用您所描述的字典类型,并设置接收器的适当属性(或ivar)。
这绝对是一种反思;setValuesForKeysWithDictionary:
中的代码通过您给它的名称访问属性,如果不存在setter方法,它甚至会找到合适的ivar。