In case anyone was looking for how to set a UIColor to an RBG value (like I was), it is done like this:
Use DigitalColor Meter in your utilities folder and get the RGB as Percentage value of the color on your screen then use the values as decimals like this:
self.backgroundColor = [UIColor colorWithRed:.914 green:.855 blue:.733 alpha:1];
|