美文网首页
mac os 开发设置NSView颜色

mac os 开发设置NSView颜色

作者: 帅静 | 来源:发表于2019-12-06 11:22 被阅读0次

mac os 端开发在设置背景色的时候发现和ios不一样,NSView设置颜色需要这几步:

    self.view.wantsLayer = true;//允许设置背景色

    self.view.layer.backgroundColor = kIBTBlueColor.CGColor;

    [self.view setNeedsDisplay:YES];

相关文章

网友评论

      本文标题:mac os 开发设置NSView颜色

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