我正在界面构建器中构建界面,并看到有多种调色板可用于选择字体和背景颜色:
background color>other>color widget 3rd tab > Palette
其中一些有奇怪的名字,如“冰”、“天空”等。
从我的代码中我可以访问
[UIColor blueColor];
[UIColor cyanColor];
有没有办法让我从我的代码中按名称访问这些额外的颜色? 例如,
//Is there a method call that does something like this?
[Color colorNamed:@"Ice" inPalette:@"Apple"];
谢谢!