objective c import once

Posted by joels on Stack Overflow See other posts from Stack Overflow or by joels
Published on 2010-03-12T23:23:35Z Indexed on 2010/03/12 23:27 UTC
Read the original article Hit count: 191

Filed under:
|

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...

© Stack Overflow or respective owner

Related posts about objective-c

Related posts about import