自定义UIColor无法正确呈现UIView背景或边框。为什么?

时间:2015-02-19 00:17:48

标签: uibutton background-color uicolor

为什么我不能使用自定义颜色来绘制UIView / UIButton(背景或边框),而我可以使用股票颜色?

这是我的自定义颜色:

enter image description here

然而,这是backgroundColor设置的结果: enter image description here

如果我要将颜色更改为STOCK颜色: enter image description here

...然后我得到了预期的结果: enter image description here

为什么会这样;有补救措施吗?  ......或者这可能是一个错误?

1 个答案:

答案 0 :(得分:0)

尝试使用此方法初始化myColor的值

UIColor *myColor = [UIColor colorWithRed:18.0/255.0 green:165.0/255.0 blue:217.0/255.0 alpha:1.0];