美文网首页
Category - runtime

Category - runtime

作者: 不知所谓的所谓 | 来源:发表于2019-06-16 16:20 被阅读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);

    }

    相关文章

      网友评论

          本文标题:Category - runtime

          本文链接:https://www.haomeiwen.com/subject/jsegfctx.html