How to define colors in XCodes' Interface Buil

2019-06-15 05:26发布

I would like to copy colors between elements in the Interface Builder or define them using RGB values. For example, I'd like to copy the background color of a button to another button without duplicating the button.

Alternatively, entering exact RGB codes in Interface Builder would suffice; that way I can make sure my buttons have the exact same color.

Currently I only know how to do this programmatically, but surely there is a way to do it in Interface Builder?

4条回答
冷血范
2楼-- · 2019-06-15 05:37

I know it is late answer but it is possible create custom profile in Interface Builder.

First you need to Click on Color of any component in Utilities panel.

Click on any Color

Then select 3rd tab from the top panel and Click on Settings icon on the right.

Select third tab and click settings button

Then select the New option

Select New option

After creating you can then rename the profile

Rename the color profile

Then click on the color picker and select a color from your color pallet

Click on color picker

Lastly drag the picked image to upper window to save that color. You can also change the name of picked color.

Drag the image to the upper window

And by repeating this you can add all your color needed for your project in this color pallet. Next you need to change color of component such as Button, Label you just need to select this color profile and select color. Hope it is helpful.

查看更多
虎瘦雄心在
3楼-- · 2019-06-15 05:44

To set RGB value in IB you should

  1. Click on corresponding element in Inspector window to invoke "Colors" dialog (e.g. Background color, text color etc)
  2. On the toolbar choose the "Sliders" icon
  3. Choose "RGB Sliders" in combo box.

Now you should be able to set RGB values for the color.

Sorry, I don't know if it is possible to copy color values between different elements easily...

查看更多
一纸荒年 Trace。
4楼-- · 2019-06-15 05:56

To copy a custom-defined color between different elements you should save it. To do this, first define the color in the Colors window (e.g. by entering RGB values into field as described in Vladimir's answer). Then simply drag from the top panel of the colors window where your resulting color is shown into one of the small square boxes at the bottom. It will be saved.

Illustration

查看更多
\"骚年 ilove
5楼-- · 2019-06-15 06:04

If you want to match RGB values between Photoshop and Xcode exactly (without conversion between colorspaces) then you need to save your images in generic RGB and enter any dropper values using the generic RGB colorspace.

  • When you choose "Save for Web & Devices" from Photoshop, uncheck the "Convert to sRGB" box.

enter image description here

  • In Xcode, click the colorspace popup in the color picker and choose "Generic RGB", then enter the red, green and blue values from Photoshop, NOT THE HEX VALUE as this reverts back to the sRGB colorspace for some reason (be careful not to tab to the hex field either, as that also changes the colorspace to sRGB).

enter image description here

More info here, including how to match screenshots.

查看更多
登录 后发表回答