I read a NSString from file and then I want to #define this as a UIColor so I can quickly change color\'s.
I want something to work like so:
#define GRAY
When you say 'read from file the string : @"GRAY"' do you mean at application run time? if so, then you cannot use #define(s), which are happening at compile time.