是否有可能在Objective-C Generics - Xcode 7+中内省数组的类型

时间:2015-06-25 02:34:39

标签: ios objective-c generics introspection objective-c-runtime

我用它来获取属性名称的类:

- (Class)gm_classForPropertyName:(NSString *)propertyName {
    objc_property_t prop = class_getProperty([self class], propertyName.UTF8String);
    const char * attr = property_getAttributes(prop);
    NSString *attributes = [NSString stringWithUTF8String:attr];
    NSArray *components = [attributes componentsSeparatedByString:@"\""];
    Class propertyClass;
    for (NSString *component in components) {
        Class class = NSClassFromString(component);
        if (class) {
            propertyClass = class;
            break;
        } else {
            class = swiftClassMapping[component];
            if (class) {
                propertyClass = class;
                break;
            }
        }
    }
    return propertyClass;
}

但这是重要的部分:

    objc_property_t prop = class_getProperty([self class], propertyName.UTF8String);
    const char * attr = property_getAttributes(prop);
    NSString *attributes = [NSString stringWithUTF8String:attr];

当我记录attributes时,它仍然看起来像一个无类型的NSArray作为字符串。有没有办法反省类的类型?

  

T。T @ “的NSArray”,&安培;,N,V_children

TL;博士

上课:

@interface SomeClass : NSObject <GenomeObject>
@property (strong, nonatomic) NSArray<SomeOtherClass *> *children;
@end

鉴于课程SomeClass,属性名称children是否可以让我找到childrenSomeOtherClass类型对象的数组?

1 个答案:

答案 0 :(得分:5)

根据WWDC关于此功能的讨论,它是使用类型擦除实现的。这意味着有关泛型的信息在编译期间被删除,而不是在运行时出现。

这是相关视频:https://developer.apple.com/videos/wwdc/2015/?id=401lightweight generics讨论从大约22分钟开始。在27:20,他们解释说它是使用类型擦除实现的。