Right now I am using the following way declare constants in header file:
static NSString *const RSMaxNumberOfIndustiresKey = @"MaxNumberOfIndustries";
Is it correct? I read Constants in Objective-C question but I really don't know if I really need to declare constant in 2 different places using FOUNDATION_EXPORT
.