Swift 未显示自定义 rgb 颜色

Swift custom rgb color not shown

所以我使用 https://www.rapidtables.com/convert/color/hex-to-rgb.html 中的自定义颜色作为单元格中的按钮标题。但是不知何故有些颜色没有像银色RGB那样设置((192,192,192),它只显示单元格按钮标签的白色。

我使用以下语法设置按钮标题颜色:

cell.viewAllButton.setTitleColor(UIColor(red: 192, green: 192, blue: 192, alpha: 1.0), for: .normal)

对于其他颜色,设置按钮标签成功。

它应该有效

cell.viewAllButton.setTitleColor(UIColor(red: 192/255, green: 192/255, blue: 192/255, alpha: 1.0), for: .normal)