iPhone 中的 RGB 颜色遇到问题吗?
我正在使用免费的在线网站来选择 RGB 颜色。有很多网站提供颜色选择器。我至少用了4到5个网站来检查RGB值。
问题是我无法为我的控件设置正确的 RGB 值。它在网站上显示正确,但在 iphone/模拟器上显示非常不同。我正在使用下面的方法。
[UIColor colorWithRed:230/255 Green:230/255 Blue:230/255 alpha:1.0];
网站和 Xcode 之类的 RGB 值有什么区别吗? 。有人可以给我推荐一个链接,我可以在其中选择一些颜色并在 iPhone 中设置 RGB。
I am using free online sites to select the RGB color . There are a lots of sites which provides the color picker . I have used at least 4 to 5 sites to check the RGB value.
Issue is I am not able to set the proper RGB values to my controls. It displays right on the website but display very different on iphone/simulator . I am using below method.
[UIColor colorWithRed:230/255 Green:230/255 Blue:230/255 alpha:1.0];
Is there any difference in the RGB value for web sites and for Xcode or something . . Can someone refer me to the link where I can pick some colors and set the RGB in iPhone .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当两个操作数都是整数时,请注意
C 中的整数除法。
Use,
Mind the integer division in C, when both operands are integer.