Category - runtime

2019-06-16  本文已影响0人  不知所谓的所谓

@porperty 做了以下三件事

1.生成实例变量 _property

2.生成 getter 方法 - property

3.生成 setter 方法 - setProperty

但是在分类(Category)中,@porperty不能主动生成实例变量和setter,getter方法,需要手动实现。【Associated Object -关联对象】

- (NSMutableArray*)attributeStrings

{

    return objc_getAssociatedObject(self, _cmd);

}

- (void)setAttributeStrings:(NSMutableArray*)attributeStrings

{

    objc_setAssociatedObject(self, @selector(attributeStrings), attributeStrings, OBJC_ASSOCIATION_RETAIN_NONATOMIC);

}

上一篇下一篇

猜你喜欢

热点阅读