I have a header file with a bunch on statics like
static NSString * SOME_NAME = @"someMeaning";
What is the best way to import this? Should I define them some other way?
I tried just using the #import statement but any file that imports it gives me a warning saying SOME_NAME defined but not used...