Xcode: Cant find rgb color picker for controls

Using Xcode 4.3.2 I cannot add color values ​​by rgb. A standard picker is as follows:enter image description here

Which doesn't offer any input for rgb or has any sliders allowing me to install anything else.

The custom picker at this location http://www.panic.com/~wade/picker/ instructs me to install on

/ Home / Library / ColorPickers.

However, the house is not edited. So I put it in

/ Users / username / Library / ColorPickers

which does nothing. (Is this correct?) Can someone explain how to fix this correctly? Thanks

+5
source share
2 answers

, , /home /Users/Username, .

- , Xcode , , .

Xcode, , .

enter image description here

, RGB , :

[myLabel setTextColor:[UIColor colorWithRed:235.2/255 green:150.7/255 blue:35.1/255 alpha:1.0]];

x/255, UIColor 0 1, RGB 255 0-1.

+9

All Articles