美文网首页
NSView,NSTextFieldCell设置背景颜色

NSView,NSTextFieldCell设置背景颜色

作者: 拥抱月亮的大星星 | 来源:发表于2019-04-16 15:58 被阅读0次

    1. NSVIew设置背景色

    注意wantsLayer需要先写才生效

        self.bgView.wantsLayer = YES;
        self.bgView.layer.backgroundColor = [NSColor redColor].CGColor;
    

    2. NSTextFieldCell设置背景色

    setDrawsBackground:YES

       self.openResultLabel.backgroundColor = [NSColor whiteColor];
        [self.openResultLabel setDrawsBackground:YES];
    

    相关文章

      网友评论

          本文标题:NSView,NSTextFieldCell设置背景颜色

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