There are many places in my app that needs to set the UIColor. I want to define the color somewhere that I can reuse it without writing the same line again, it's hard to keep track and maintain.
UIColor *myColor = [UIColor colorWithRed:0.1 green:0.3 blue:0.7 alpha:1];
I tried to make it like
#define myColor = [UIColor colorWithRed:0.1 green:0.3 blue:0.7 alpha:1];
and reuse myColor but it doesn't work. :/
Thanks!