NSButton with round corners and background color

前端 未结 8 1988
迷失自我
迷失自我 2021-02-19 06:30

I want a simple push button (the one with the round corners), and to add background to it. I\'ve tried 2 things:

1 - using a round button image: this is working good, un

8条回答
  •  说谎
    说谎 (楼主)
    2021-02-19 07:02

    Here's what works for me (Swift 4).

    To set background color:

     myButton.layer?.backgroundColor = CGColor.customSilver
    

    To set corner radius:

    myButton.layer?.cornerRadius = 3
    

提交回复
热议问题