由于名为“age”的属性也总是有一个名为“age”的选择器,我可以respondsToSelector
按照这个问题的建议使用它,这将告诉我在运行时是否存在任何给定对象中的特定选择器。
如果存在名为“age”的属性,我可以验证这一点。我怎么知道该选择器(该属性的读取方法)是返回对象(id)还是非对象(int)?
这种类型确定是否可以在运行时进行,还是 Objective-C 方法总是假设有人使用我希望它使用的类型实现了该方法,或者我也可以验证返回类型?
这是在 XCode 4.5 中使用最新的 Objective-C 版本(LLVM 4.1)。
更新:这是我想出的实用程序类别 NSObject:
- (NSString*) propertyType: (NSString*)propname
{
objc_property_t aproperty = class_getProperty([self class], [propname cStringUsingEncoding:NSASCIIStringEncoding] ); // how to get a specific one by name.
if (aproperty)
{
char * property_type_attribute = property_copyAttributeValue(aproperty, "T");
NSString *result = [NSString stringWithUTF8String:property_type_attribute];
free(property_type_attribute);
return result;
}
else
return nil;
}
在研究这个问题时,我还编写了这个方便实用的实用方法,可以列出该对象的所有属性:
- (NSArray*) properties;
{
NSMutableArray *results = [NSMutableArray array];
@autoreleasepool {
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];
const char * aname=property_getName(property);
[results addObject:[NSString stringWithUTF8String:aname]];
//const char * attr= property_getAttributes(property);
//[results addObject:[NSString stringWithUTF8String:attr]];
}
if (properties) {
free(properties);
}
} // end of autorelease pool.
return results;
}