I'm building the interface within interface builder and see that there's a variety of color palettes available for selecting font and background colors:
background color>other>color widget 3rd tab > Palette
Some of them have weird names like "Ice", "Sky", etc.
From my code I have access to
[UIColor blueColor];
[UIColor cyanColor];
Is there a way for me to access these additional colors by name from my code? For example,
//Is there a method call that does something like this?
[Color colorNamed:@"Ice" inPalette:@"Apple"];
Thank you!