Weird colors in XCode Interface Builder?

2019-01-07 10:38发布

I have really weird problem with colors in interface builder. I set a color on one UI element, for example UIView, and then I want the same color on UIButton...but when I try to do so, colors are often different - I mean little bit different tone, not absolutely different color. How is this even possible ??? I've tried to use RGB sliders, and other sliders, also that color picker tool... Only thing that helps me sometimes is, when I create new UI element. Anybody had the same problem and knows what's going on ?

4条回答
够拽才男人
2楼-- · 2019-01-07 11:20

Unfortunately, fiddling with color spaces didn't work for me. What did work was editing the raw xml of the .xib (right click .xib, Open As > Source Code) and changing the RGB decimal values there.

查看更多
Summer. ? 凉城
3楼-- · 2019-01-07 11:20

The currently selected item in interface builder will be slightly different to its actual colour - it has a darkened mask applied to it to highlight the fact that it is selected. You need to click somewhere else in the window to unselect the item, it's real colour will then be shown. I've fallen into this trap myself.

查看更多
小情绪 Triste *
4楼-- · 2019-01-07 11:22

I solved this issue using "Device RGB" instead "Generic RGB". See the image: enter image description here

查看更多
再贱就再见
5楼-- · 2019-01-07 11:24

Interface Builder filters colors through your monitor's current color space by default. You can change this in Xcode4 IB by bringing up a Colors dialog, clicking the Sliders tab, then clicking the little dropdown button under the magnifying glass that looks like a color spectrum. This will bring up a list of available color spaces -- select Generic RGB and adjust the sliders as necessary to get the correct color.

See this question for more information, especially the comments on the accepted answer.

查看更多
登录 后发表回答