gpt4 book ai didi

ios - 如何设置 UIButton 背景颜色的 alpha?

转载 作者:行者123 更新时间:2023-11-28 06:23:10 24 4
gpt4 key购买 nike

我目前正在制作自定义按钮功能,但希望能够设置背景颜色的 alpha。这是我目前所拥有的:

  func roundButtonCornersAndAddBorderColor(button: UIButton) {
button.backgroundColor = .clear
button.layer.cornerRadius = 5
button.layer.borderWidth = 1
button.layer.borderColor = UIColor.white.cgColor
}

最佳答案

要使用 alpha 设置颜色:

UIColor(red: 0.5, green: 0.5, blue:0, alpha: 1.0)

或者:

 button.backgroundColor?.withAlphaComponent(0.5)

关于ios - 如何设置 UIButton 背景颜色的 alpha?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42754781/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com