When developing an iPhone app, I need to create a 'copy' of that app for various clients that, among other things, changes all the colors of the application's text, backgrounds, ...
I was wondering if it's possible to have the colors stored somewhere like:
- text -> #fffffff
- secondaryText -> #808080
- background -> #707070
- ...
And then use those referencees in the xib files instead of the actual color values. I want to do this in order to avoid duplicating xib files and making them impossible to maintain. The idea would be something similar to android's resources where you can use '@color/text' for example
