美文网首页
ios category 添加属性

ios category 添加属性

作者: sundancer | 来源:发表于2017-04-19 20:19 被阅读0次
    @interface AppDelegate (adv) 
    
    @property (nonatomic, strong) UIView *backgroundView;
    
    @end
    
    @implementation AppDelegate (adv)
    -(UIView *)backgroundView
    {
        return objc_getAssociatedObject(self, @selector(backgroundView));
    }
    
    -(void)setBackgroundView:(UIView *)backgroundView
    {
        return objc_setAssociatedObject(self, @selector(backgroundView), backgroundView, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
    }
    @end
    

    相关文章

      网友评论

          本文标题:ios category 添加属性

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