我已经通过拖放实现了导航控制器,现在我想设置我自己的RGB自定义颜色:
[UIColor colorWithRed:0.992 green:0.443 blue:0.173 alpha:1.0].
当我实现以下代码时,它给了我另一种颜色。
[self.navigationController.navigationBar setTitleTextAttributes:
@{NSForegroundColorAttributeName:[UIColor colorWithRed:0.992 green:0.443 blue:0.173 alpha:1.0]}];
我如何获得所需的颜色......?
答案 0 :(得分:0)
您设置的RGB为橙色,
[UIColor colorWithRed:0.992 green:0.443 blue:0.173 alpha:1.0].
这意味着R = 253 G = 113 B = 44 请在link
上查看浅蓝色这会有所帮助。
R=164
,G=224
,B= 254
。
您需要像这样编码
[UIColor colorWithRed:164/255.0f green:224/255.0f blue:254/255.0f alpha:1.0].
希望这有帮助!