美文网首页
Mac 开发 NSTextField背景色如何去掉

Mac 开发 NSTextField背景色如何去掉

作者: 本帅不良 | 来源:发表于2020-08-24 11:12 被阅读0次
    image.png
    如图中所示,当我们设置NSTextField父视图的背景色的时候,其本身也会生成一个背景色。

    我尝试过以下方法:

    self.label.wantsLayer = YES;
    self.label.layer.backgroundColor = [NSColor clearColor].CGColor;
    

    无效

    正确的处理方式:

    image.png

    1、勾选Draws Background
    2、设置Background为透明色

    相关文章

      网友评论

          本文标题:Mac 开发 NSTextField背景色如何去掉

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