我正在尝试使用从这里的答案中找到的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);

提前致谢!。

最佳答案

您必须导入运行时

#import <objc/runtime.h>

关于objective-c - Objective-C运行时错误 “Use of undeclared identifier ' objc_property_t'”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11456924/

10-13 02:47