gpt4 book ai didi

ios 什么是 UITextField 边框颜色值

转载 作者:行者123 更新时间:2023-11-28 14:25:14 29 4
gpt4 key购买 nike

我有一个 UIView,我想为 UIView 设置边框颜色。

我有一个 UITextField,下面是一个 UIView。在该 View 中,我有一些复选框。

现在我想提供与 UITextField 相同的外观和感觉,为此我想要以下内容

  • 我需要将 UIView round corder 设置为 UITextField(我已经做到了)
  • 我需要对 UIView 应用与 UITextField 相同的边框颜色值

我被困在第二点。我正在获取 UITextField 的边框颜色,如下所示

myTextField.layer.borderColor

但是我得到了更多的黑色边框,但是在 UITextField 上它看起来非常漂亮并且颜色值很低。

请帮我找到一个真正的值(value)。

最佳答案

//for normal
textView.layer.borderWidth = 2.0

textView.layer.borderColor = UIColor.blue.cgColor

//for RgbColour

textView.layer.borderWidth = 2.0

textView.layer.borderColor = UIColor(rgb: 0xC12326, alphaVal: 1).cgColor

extension UIColor{
convenience init(rgb: UInt, alphaVal: CGFloat) {
self.init(
red: CGFloat((rgb & 0xFF0000) >> 16) / 255.0,
green: CGFloat((rgb & 0x00FF00) >> 8) / 255.0,
blue: CGFloat(rgb & 0x0000FF) / 255.0,
alpha: alphaVal
)
}
}

注意:- 自定义您的颜色并赋予相同的边框,它看起来应该是一样的。

关于ios 什么是 UITextField 边框颜色值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51647750/

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