ios - UIColor 不适用于 RGBA 值

标签 ios swift uicolor

我正在尝试使用以下代码(RGBA 值)更改 UITextField 中的文本颜色,但它只是显示为白色或清晰,我不太确定,因为背景本身是白色的。

passwordTextField.textColor = UIColor(red: CGFloat(202.0), green: CGFloat(228.0), blue: CGFloat(230.0), alpha: CGFloat(100.0))

passwordTextField.returnKeyType = UIReturnKeyType.Done
passwordTextField.placeholder = "Password"
passwordTextField.backgroundColor = UIColor.clearColor()
passwordTextField.borderStyle = UITextBorderStyle.RoundedRect
passwordTextField.font = UIFont(name: "Avenir Next", size: 14)
passwordTextField.textAlignment = NSTextAlignment.Center
passwordTextField.secureTextEntry = true

最佳答案

UIColor 的 RGB 值介于 0 和 1 之间(请参阅 the documentation“指定为 0.0 到 1.0 之间的值”)

您需要将数字除以 255:

passwordTextField.textColor = UIColor(red: CGFloat(202.0/255.0), green: CGFloat(228.0/255.0), blue: CGFloat(230.0/255.0), alpha: CGFloat(1.0))

另一件事,你不需要创建 CGFloats:

passwordTextField.textColor = UIColor(red:202.0/255.0, green:228.0/255.0, blue:230.0/255.0, alpha:1.0)

关于ios - UIColor 不适用于 RGBA 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35025160/

相关文章:

ios - 如何更改 viewController 的颜色(或主题)?

ios - iPhone X 背景图像的长宽比

ios - 大图像导致 UITableView 应用程序崩溃

swift - 在 Swift 中实现可失败初始化器的最佳实践

ios - 自定义 UIView 在第二次调用后发生变化

swift - 是否可以拥有两个不同的位置管理员授权?

ios - 自定义更改单元格底部边框的颜色

ios - 如何选择 UITableViewCell 上的所有标签元素以间隔更新日期时间?

ios - 从 NSMutableArray 添加按钮到 UIActionSheet

swift - 如何更改每个 uitableviewcell 背景颜色