OStack程序员社区-中国程序员成长平台

标题: ios - 如何在运行时确定只读属性是否弱? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 19:10
标题: ios - 如何在运行时确定只读属性是否弱?

我有一个声明两个属性的类。

@property (nonatomic, readonly, weak) id first;
@property (nonatomic, weak) id second;

我在运行时使用以下代码检查属性的属性:

unsigned int propertyCount;
objc_property_t *properties = class_copyPropertyList(class, &propertyCount);
for (int propertyIndex = 0; propertyIndex < propertyCount; propertyIndex++) {
    objc_property_t property = properties[propertyIndex];
    const char *rawName = property_getName(property);
    NSString *propertyName = [NSString stringWithCString:rawName encoding:[NSString defaultCStringEncoding]];
    BOOL isWeak = [self propertyIsWeak:property];
    char const *attributes = property_getAttributes(property);
    NSString *attributesString = [NSString stringWithCString:attributes encoding:[NSString defaultCStringEncoding]];
    NSArray *attributesArray = [attributesString componentsSeparatedByString","];
    BOOL weak = [attributesArray containsObject"W"];
    NSLog(@"attributes of property are %@.  Weak? %d", attributesString, weak);
}

不幸的是,我得到了这些结果:

attributes of property are T@,R,N,V_first.  Weak? 0
attributes of property are T@,W,N,V_second.  Weak? 1

https://developer.apple.com/library/mac/documentation/cocoa/conceptual/objcruntimeguide/articles/ocrtpropertyintrospection.html 的文档中可以清楚地看出第一个属性也应该有一个“W”,但它没有。有谁知道如何检测这个属性实际上很弱?

请注意,将它声明为弱确实很重要,编译器会关心并适本地对待它。

这似乎是一个错误,但我仍然需要一个真正有效的方法。



Best Answer-推荐答案


将其设置为只读仅意味着您没有创建 setter 方法。所以将其设置为弱,是违反直觉的。除了更改合成 ivar 的生命周期限定符之外,强/弱修饰符对只读属性没有任何影响

我会在 .h 中将其设置为只读,然后如果您希望它成为 .m 文件中的弱变量,则有

@property (nonatomic, weak) id first

这样它在外部是只读的,但如果这是你想要的,那么它在内部是弱的。

关于ios - 如何在运行时确定只读属性是否弱?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21941418/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4