我使用以下内容获取所有ivar的列表:
Ivar *vars = class_copyIvarList([property class], &varCount);
我的问题是如何从Ivar创建一个id?即恢复NSString或NSDictionary等。
答案 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)]];
...