添加属性的使用

static const char propertyKey;

pragma mark 动态增加属性

  • (void)setDrImg:(UIImage *)drImg {
    objc_setAssociatedObject(self, &propertyKey, drImg, OBJC_ASSOCIATION_RETAIN_NONATOMIC);

}

  • (UIImage *)drImg {
    return objc_getAssociatedObject(self, &propertyKey);
    }

你可能感兴趣的:(添加属性的使用)