我正在尝试使用我在此处的答案中找到的 obj-c 运行时方法从我的类中获取属性,但是我在编码时收到很多警告/错误,我需要导入库还是在为了使 obj-c 运行时函数可用?
objc_property_t *properties = class_copyPropertyList([self class], &outCount);
警告:“函数 'class_copyPropertyList' 的隐式声明在 C99 中无效错误:使用未声明的标识符 'objc_property_t'
这是我复制的整个块:
unsigned int outCount, i;
objc_property_t *properties = class_copyPropertyList([self class], &outCount);
for (i = 0; i < outCount; i++) {
objc_property_t property = properties[i];
NSString *propertyName = [[NSString alloc] initWithCString:property_getName(property)];
id propertyValue = [self valueForKey:(NSString *)propertyName];
if (propertyValue) [props setObject:propertyValue forKey:propertyName];
}
free(properties);
提前致谢!。