从Ivar创建id

时间:2012-07-30 11:25:31

标签: iphone objective-c ios

我使用以下内容获取所有ivar的列表:

 Ivar *vars = class_copyIvarList([property class], &varCount);

我的问题是如何从Ivar创建一个id?即恢复NSString或NSDictionary等。

2 个答案:

答案 0 :(得分:2)

您只需使用object_getIvar()功能。 像这样:

uint varCount;
Ivar *vars = class_copyIvarList([property class], &varCount);

// Get the first one (out of an instance of this class)
// Of course you could just iterate and get each one
id var = object_getIvar(property, vars[0]);

// Free the array when you're done
free(vars);

答案 1 :(得分:2)

此方法可以简化您的转换代码:

id obj = [p valueForKey:[NSString stringWithUTF8String:ivar_getName(anIvar)]];
...