Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to copy colors between elements in the interface builder or define them using RGB values.

I.e. copy the background color of a button to another button without duplicating the button.

Or: Enter an exact RGB code using the interface builder.

Currently I can do this only programmatically but the interface builder is meant to design the GUI, so there must be such possibilities.

Thank you all in advance for your answers.

share|improve this question

2 Answers

up vote 5 down vote accepted

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...

share|improve this answer
1  
this was too easy! i was looking for this option for so long and never found it, thank you very much! – favo May 22 '10 at 20:33

To copy color between different elements you should save that customly defined color. To do this, first define color by entering RGB values into field as described in Vladimir's post above. Than simply drag above panel with your resulting color into the one of small square boxes at the bottom of Colors window. It will be saved.

share|improve this answer
Exactly what I was looking for. It so small I've missed it for years. – MrNickBarker Feb 13 at 9:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.