up vote 154 down vote favorite
186
share [g+] share [fb]

I'm developing a Cocoa app, and I'm using constant NSStrings as ways to store key names for my preferences. I understand this is a good idea because it allows easy changing of keys if necessary. Plus, it's the whole 'separate your data from your logic' notion. Anyway, is there a good way to make these constants defined once for the whole app? I'm sure that there's an easy and intelligent way, but right now my classes just redefine the ones they use. Suck.

Thanks.

link|improve this question

OOP is about grouping your data with your logic. What are you proposing is just a good programming practice, i.e., making your program easy to change. – Raffi Khatchadourian Dec 13 '11 at 1:01
feedback

10 Answers

up vote 247 down vote accepted

You should create a header file like

// Constants.h
extern NSString * const MyFirstConstant;
extern NSString * const MySecondConstant;
//etc.

You can include this file in each file that uses the constants or in the pre-compiled header for the project.

You define these constants in a .m file like

// Constants.m
NSString * const MyFirstConstant = @"FirstConstant";
NSString * const MySecondConstant = @"SecondConstant";

Constants.m should be added to your application/framework's target so that it is linked in to the final product.

The advantage of using string constants instead of #define'd constants is that you can test for equality using pointer comparison (stringInstance == MyFirstConstant) which is much faster than string comparison ([stringInstance isEqualToString:MyFirstConstant]) (and easier to read, IMO).

link|improve this answer
16  
For an integer constant would it be: extern int const MyFirstConstant = 1; – Dan Morgan Feb 15 '09 at 17:20
2  
@Debajit Yes, in the C++ world, const NSString * const MyConstant is correct. Since Objective-C is a C superset, however, const correctness is not part of its history and you get many warnings about passing the incrrect (const) pointer to methods that expect an NSString* even though an NSString * is immutable so could be declared const NSString *. – Barry Wark May 1 '09 at 3:27
19  
Overall, great answer, with one glaring caveat: you DO NOT want to test for string equality with the == operator in Objective-C, since it tests memory address. Always use -isEqualToString: for this. You can easily get a different instance by comparing MyFirstConstant and [NSString stringWithFormat:MyFirstConstant]. Make no assumptions about what instance of a string you have, even with literals. (In any case, #define is a "preprocessor directive", and is substituted before compilation, so either way the compiler sees a string literal in the end.) – Quinn Taylor Jun 30 '09 at 2:21
27  
In this case, it's OK to use == to test for equality with the constant, if it's truly used as a constant symbol (i.e. the symbol MyFirstConstant instead of a string containing @"MyFirstConstant" is used). An integer could be used instead of a string in this case (really, that's what you're doing--using the pointer as an integer) but using a constant string makes debugging slightly easier as the value of the constant has human-readable meaning. – Barry Wark Jun 30 '09 at 15:48
3  
+1 for "Constants.m should be added to your application/framework's target so that it is linked in to the final product." Saved my sanity. @amok, do "Get info" on Constants.m and choose the "Targets" tab. Make sure it's checked for the relevant target(s). – PEZ Oct 19 '10 at 19:03
show 10 more comments
feedback

Easiest way:

// Prefs.h
#define PREFS_MY_CONSTANT @"prefs_my_constant"

Better way:

// Prefs.h
extern NSString * const PREFS_MY_CONSTANT;

// Prefs.m
NSString * const PREFS_MY_CONSTANT = @"prefs_my_constant";

One benefit of the second is that changing the value of a constant does not cause a rebuild of your entire program.

link|improve this answer
2  
I prefer constants over macros. – Georg Schölly Feb 11 '09 at 22:38
I thought you were not supposed to change the value of constants. – Cocoaster Dec 28 '09 at 12:38
15  
Andrew is refering to changing the value of the constant while coding, not while the application is running. – Randall Feb 27 '10 at 11:02
feedback

There is also one thing to mention. If you need a non global constant, you should use static keyword.

Example


// In your *.m file
static NSString * const kNSStringConst = @"const value";

Because of the static keyword, this const is not visible outside of the file.

link|improve this answer
16  
Minor correction: static variables are visible within a compilation unit. Usually, this is a single .m file (as in this example), but it can bite you if you declare it in a header which is included elsewhere, since you'll get linker errors after compilation. – Quinn Taylor Jun 30 '09 at 2:22
If I don't use the static keyword, will kNSStringConst be available throughout the project? – Danyal Aytekin Nov 7 '11 at 12:31
Ok, just checked... Xcode doesn't provide autocompletion for it in other files if you leave static off, but I tried putting the same name in two different places, and reproduced Quinn's linker errors. – Danyal Aytekin Nov 7 '11 at 13:47
feedback

The accepted (and correct) answer says that "you can include this [Constants.h] file... in the pre-compiled header for the project." As a novice, I had difficulty doing this without further explanation -- here's how: In your YourAppNameHere-Prefix.pch file (this is the default name for the precompiled header in XCode), import your Constants.h inside the #ifdef __OBJC__ block.

#ifdef __OBJC__
  #import <UIKit/UIKit.h>
  #import <Foundation/Foundation.h>
  #import "Constants.h"
#endif

Also note that the Constants.h and Constants.m files should contain absolutely nothing else in them except what is described in the accepted answer. (No interface or implementation).

link|improve this answer
feedback

I am generally using the way posted by Barry Wark and Rahul Gupta.

Although, I do not like repeating the same words in both .h and .m file. Note, that in the following example the line is almost identical in both files:

// file.h
extern NSString* const MyConst;

//file.m
NSString* const MyConst = @"Lorem ipsum";

Therefore, what I like to do is to use some C preprocessor machinery. Let me explain through the example.

I have a header file which defines the macro STR_CONST(name, value):

// StringConsts.h
#ifdef SYNTHESIZE_CONSTS
# define STR_CONST(name, value) NSString* const name = @ value
#else
# define STR_CONST(name, value) extern NSString* const name
#endif

The in my .h/.m pair where I want to define the constant I do the following:

// myfile.h
#import <StringConsts.h>

STR_CONST(MyConst, "Lorem Ipsum");
STR_CONST(MyOtherConst, "Hello world");

// myfile.m
#define SYNTHESIZE_CONSTS
#import "myfile.h"

et voila, I have all the information about the constants in .h file only.

link|improve this answer
2  
This is a sweet idea. Thanks for that one. – Scott Little Dec 2 '11 at 23:15
Hmm, there is a bit of a caveat however, you cannot use this technique like this if the header file is imported into the precompiled header, because it won't load the .h file into the .m file because it was already compiled. There is a way though - see my answer (since I can't put nice code in the comments. – Scott Little Dec 2 '11 at 23:43
feedback

If you want something like global constants; a quick an dirty way is to put the constant declarations into the pch file.

link|improve this answer
4  
Editing the .pch is usually not the best idea. You'll have to find a place to actually define the variable, almost always a .m file, so it makes more sense to declare it in the matching .h file. The accepted answer of creating a Constants.h/m pair is a good one if you need them across the whole project. I generally put constants as far down the hierarchy as possible, based on where they will be used. – Quinn Taylor Jun 30 '09 at 2:27
feedback

As Abizer said, you could put it into the PCH file. Another way that isn't so dirty is to make a include file for all of your keys and then either include that in the file you're using the keys in, or, include it in the PCH. With them in their own include file, that at least gives you one place to look for and define all of these constants.

link|improve this answer
feedback

And what you think about using a class method ? :

+(NSString*)theMainTitle
{
    return @"Hello World";
}

I use it sometimes.

link|improve this answer
4  
A class method isn't a constant. It has a cost at run time, and may not always return the same object (it will if you implement it that way, but you haven't necessarily implemented it that way), which means you have to use isEqualToString: for the comparison, which is a further cost at run time. When you want constants, make constants. – Peter Hosey Dec 6 '09 at 15:51
2  
@Peter Hosey, while your comments are right, we take that performance hit once per LOC or more in "higher-level" languages like Ruby without every worrying about it. I'm not saying you're not right, but rather just commenting on how standards are different in different "worlds." – Yar Jan 17 '11 at 20:59
True on Ruby. Most of the performance people code for is quite unnecessary for the typical app. – Peter DeWeese May 25 '11 at 21:20
feedback
// Prefs.h
extern NSString * const RAHUL;

// Prefs.m
NSString * const RAHUL = @"rahul";
link|improve this answer
feedback

A slight modification of the suggestion of @Krizz, so that it works properly if the constants header file is to be included in the PCH, which is rather normal. Since the original is imported into the PCH, it won't reload it into the .m file and thus you get no symbols and the linker is unhappy.

However, the following modification allows it to work. It's a bit convoluted, but it works.

You'll need 3 files, .h file which has the constant definitions, the .h file and the .m file, I'll use ConstantList.h, Constants.h and Constants.m, respectively. the contents of Constants.h are simply:

// Constants.h
#define STR_CONST(name, value) extern NSString* const name
#include "ConstantList.h"

and the Constants.m file looks like:

// Constants.m
#ifdef STR_CONST
    #undef STR_CONST
#endif
#define STR_CONST(name, value) NSString* const name = @ value
#include "ConstantList.h"

Finally, the ConstantList.h file has the actual declarations in it and that is all:

// ConstantList.h
STR_CONST(kMyConstant, "Value");
…

A couple of things to note:

  1. I had to redefine the macro in the .m file after #undefing it for the macro to be used.

  2. I also had to use #include instead of #import for this to work properly and avoid the compiler seeing the previously precompiled values.

  3. This will require a recompile of your PCH (and probably the entire project) whenever any values are changed, which is not the case if they are separated (and duplicated) as normal.

Hope that is helpful for someone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.