One approach I've used on other projects is to create a ProjectStyle.h file, that has #defines for custom colors and other style related constants. You just need to import it.
Something like:
ProjectStyles.h
#define RED_HEADER_COLOR [UIColor colorWithRed:0.8f green:0.1f blue:0.1f alpha:0.9f]
#define RED_BACKGROUND_COLOR [UIColor colorWithRed:0.9f green:0.3f blue:0.1f alpha:1.0f]
#define PRIMARY_FONT [UIFont fontWithName:@"HelveticaNeue-Bold" size:12.0f]
You could also have a corresponding .m file if you wanted to create constant instances of some UIColor or UIFont objects, something like
ProjectStyles.m
+ (UIColor *) redHeaderColor
{ return [UIColor colorWithRed:0.8f green:0.1f blue:0.1f alpha:0.9f]; }
+ (UIColor *) redBackgroundColor
{ return [UIColor colorWithRed:0.9f green:0.3f blue:0.1f alpha:1.0f]; }
+ (UIFont *) primaryFont
{
static UIFont *font = nil;
if ( font == nil )
font = [UIFont fontWithName:@"HelveticaNeue-Bold" size:12.0f];
return font;
}
And then of course expose those in the header
The other thing I like about a ProjectStyle kind of approach is that after a while you will want more custom things than just colors - custom fonts, custom line and shadows. Having a Style class or header to place all these things in gives you one place to look up what custom elements are already defined for all sorts of things, and a very obvious #import for later coders to follow back to you centralized well of custom information.
If you just place custom elements in categories then you end up with customization spread over several categories, and also the possibility (mostly remote) of category name collisions with other third party libraries.