iPhone 中的 RGB 颜色遇到问题吗?

发布于 2024-11-08 19:23:42 字数 313 浏览 3 评论 0原文

我正在使用免费的在线网站来选择 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

行雁书 2024-11-15 19:23:42

当两个操作数都是整数时,请注意

  [UIColor colorWithRed:230.0/255 green:230.0/255 blue:230.0/255 alpha:1.0];

C 中的整数除法。

Use,

  [UIColor colorWithRed:230.0/255 green:230.0/255 blue:230.0/255 alpha:1.0];

Mind the integer division in C, when both operands are integer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文