UILabel 设置字体颜色(RGB)

代码一直用[UIColor blackColor]

xib种设置直接属性那里设置比如#ac742a

但是代码里吗怎么根据RGB值设置颜色?

label.textColor = [UIColor colorWithRed:0.7 green:0.5 blue:0.2 alpha:1];

设计给了颜色号,特给了rgb数值 (172,116,42),不能直接用都要除以255

因为 RGB是一个0~1的浮点数小数值

你可能感兴趣的:(UILabel 设置字体颜色(RGB))