I have a iPhone application with a few custom-defined colors for my theme. Since these colors will be fixed for my UI, I would like to define the colors in a class to be included (Constants.h and Constants.m). How do I do that? (Simply defining them does not work because UIColors are mutable, and would cause errors - Initalizer not constant).

/* Constants.h */
extern UIColor *test;

/* Constants.m */
UIColor *test = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:1.0];

Thanks!

link|improve this question

69% accept rate
feedback

4 Answers

up vote 5 down vote accepted

A UIColor is not mutable. I usually do this with colors, fonts and images. You could easily modify it to use singletons or have a static initializer.

@interface UIColor (MyProject)

+(UIColor *) colorForSomePurpose;

@end

@implementation UIColor (MyProject)

+(UIColor *) colorForSomePurpose { return [UIColor colorWithRed:0.6 green:0.8 blue:1.0 alpha:1.0]; }

@end
link|improve this answer
-1 for the first sentence - the Initializer is what is not constant, not the instance. For all intents and purposes, UIColor could (or could tomorrow) contain internal state variables which are unexposed to the user, making them seem to us constant, however there is nothing in Obj-C forcing this. Therefore the compiler cannot use a static initializer, like it would like to, because [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:1.0] is a method call, and thus the results of this cannot be put in the text segment, which is created at compile time. – Jared Pochtar May 13 '10 at 4:28
1  
Mutable means that you can change the instance. Immutable means you cannot change the instance. Constant means that the instance cannot be changed. A UIColor is not mutable and also not constant. Only CFString/NSString has truly constant instances because they are handled specially as part of the language by the compiler. – drawnonward May 13 '10 at 15:32
feedback

Another option

in your .h you can do

extern UIColor *  const COLOR_LIGHT_BLUE;

in your .mm you can do

UIColor* const COLOR_LIGHT_BLUE = [[UIColor alloc] initWithRed:21.0f/255 green:180.0f/255  blue:1 alpha:1];//;#15B4FF
link|improve this answer
What is this shifty C++ dynamic constants? ;) +1 – PartiallyFinite Apr 16 at 13:27
feedback

Often people put global constants into singleton objects - or as drawnonward noted, you can make them accessible via a class method of some class.

link|improve this answer
feedback

Use the AppController to make the colors accessible globally, rather than a static variable. That way it makes sense from an architecture standpoint, and also if you wanted to hypothetically change color schemes, even while running, this would just be a method or two on the AppController

link|improve this answer
AppController - I guess you are referring to the UIApplication delegate? – Till Apr 9 at 17:19
Changing colors at runtime would be much bigger task in most applications. Also good way to pollute the app delegate with code that doesn't have anything to do with it. – Sulthan Apr 9 at 18:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.