Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a list of constants for numbers api's that I'd like to collect in one location in code and am wondering about the best ways to do this. Here's what I have so far..

A static array with all the constants...

static NSDictionary* kApiConstants =
    [NSDictionary dictionaryWithObjectsAndKeys:
     @"crittercism-app-id", @"myAppId",
     @"crittercism-key",    @"myAppKey",
     @"crittercism-secret", @"mySecretKey",

     @"content-server-url-dev", @"http://my-dev-url/",
     @"content-server-url-stg", @"http://my-staging-url",
     @"content-server-url-pro", @"http://my-production-url",
     nil];

I then have a macro for quick retrieval of items in the array...

#define MYAPIKEY(x) [kApiConstants objectForKey:x]

I like this setup. It makes code cleaner to read overall and makes merging easier for my purposes between branches in our git repo. One feature I would love to have at build/compile time is if a string is not in the dictionary then a build and/or compiler error would get flagged to indicate this.

I'm sure others have run into this situation before with so many 3rd party libraries, sdk's and what have you in a project it's hard to keep track of them all. For those willing to share what systems have you come up with to help with this?

In my case this is for an iOS project but the situation applies for any kind of project really.

share|improve this question
NSDictionary does not make a good Model, you can create a real class with little more code. Also when I see a macro I cringe not knowing what is does, – Zaph Dec 13 '12 at 0:41

1 Answer

up vote 2 down vote accepted

What advantage do you see in using a dictionary over just making them constants on their own? Your wish:

One feature I would love to have at build/compile time is if a string is not in the dictionary then a build and/or compiler error would get flagged to indicate this.

would be solved by just making them constants in their own right.

share|improve this answer
True. Not sure there is any advantage to using a dictionary and you are correct using constants would resolve the build/compile time demand. – Rob Segal Dec 13 '12 at 2:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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