Swift Mac OSX NSButton title color

后端 未结 3 469
清歌不尽
清歌不尽 2021-01-18 04:54

I would like to know how to change title color to a NSButton in swift, I\'ve seen lots of examples in objective-c but I think in swift the implementation is different, can a

3条回答
  •  迷失自我
    2021-01-18 05:10

    In Swift4

    button.attributedTitle = NSMutableAttributedString(string: "Hello World", attributes: [NSAttributedStringKey.foregroundColor: NSColor.white, NSAttributedStringKey.paragraphStyle: style, NSAttributedStringKey.font: NSFont.systemFont(ofSize: 18)])
    

提交回复
热议问题