Easiest way:
// Prefs.h#define PREFS_MY_CONSTANT @"prefs_my_constant"
Better way:
// Prefs.hexternNSString*const PREFS_MY_CONSTANT;// Prefs.mNSString*const PREFS_MY_CONSTANT =@"prefs_my_constant";
http://stackoverflow.com/questions/538996/constants-in-objective-c