What's the naming convention for constants in Objective-C (or most widely used way to name them)?

Is there a different criteria for extern constants?

Some styles I have seen:

NSString* const kPreferenceFirstRun = @"FirstRun";

// Replace "XY" by a prefix representing your company, project or module
NSString* const XYPreferenceFirstRun = @"FirstRun"; 
link|improve this question

79% accept rate
feedback

3 Answers

Edit: I wrote this answer quite a while ago - I've long since switched to two-letter prefixes, as @hgcp has suggested.


Personally, I tend to use the lowercase 'k' prefix because it's a little nicer on the eyes, and because it's clear that it's a constant (I never have any variable names that start with a 'k'). Also, Apple uses the 'k', so I just stuck with it.

I also tend to stay away from all-caps constants, because I've reserved all-caps for macro definitions. Just my two cents.

link|improve this answer
4  
+ 1 Stay away for all caps : that's for #define constant and macro. - 1 'k' prefix is used in C frameworks by Apple and the 'NS' (or what ever you want) is used in the Obj-C frameworks. – gcamp Oct 30 '10 at 14:44
I used to be an advocate of using k as a prefix until I started using multiple sibling projects in Xcode. Then the lack of a two-letter prefix becomes problematical. See my comments below hgpc's answer. – Answerbot Mar 12 at 18:07
1  
@Answerbot I wrote that answer in 2010 - I've long since switched to two-letter prefixes, and completely agree with you. I've updated my answer to reflect this. – Itai Ferber Mar 12 at 18:31
Why not use both? Start it with 'k' + the two-letter prefix? That way you get the benefit of code completing constants only by starting your typing with k as well as the name-spacing of the two-letter prefix. E.g., 'kNSConstantName'. – cygnl7 Mar 30 at 19:22
@cygnl7 There's not much of a reason not to except that it's longer. You don't need more than one or the other, but you can certainly use both if you'd like. – Itai Ferber Mar 30 at 20:49
feedback
up vote 5 down vote accepted

After a bit of googling I've found the official coding guidelines for Cocoa.

To sum up:

  • Start with a two-letter prefix in ALL-CAPS
  • Rest in UpperCamelCase
  • Same criteria for extern constants

I agree with itaiferber that the k prefix style is clearer and also much more useful for autocompletion. It would be interesting to know if this style is more popular than the official guidelines.

link|improve this answer
I think the benefit of a two-letter prefix vs k prefix is twofold: 1) the two letter prefix allows you to easily filter your auto-complete choices to only the group of constants you are looking for 2) when looking at code, you know exactly what domain the constant came from. Imagine if you are working on a project that uses multiple sibling projects in Xcode and they all use k as the only identifier for constants -- you'd be stuck sorting through a list of all constants from all sibling projects. Alternately, if each project used its own two letter domain prefix it becomes much easier. – Answerbot Mar 12 at 18:05
feedback

it's seems to me, the best practice is to name constants in upper-case. but cocoa-core developers don't seem to share my opinion)) they use CamelCase for constants

link|improve this answer
13  
Perhaps Cocoa core developers don't like their code SHOUTING AT THEM. – dreamlax Oct 30 '10 at 10:41
The all-uppercase technique was used in C because it made macros (not constants, macros) stand out. Because macros are such a dangerous construct in C, this was a very useful technique because it would draw your eye to likely trouble spots. Unfortunately, this convention has been misguidedly copied in languages that have perfectly good constant definition mechanisms built into the language itself. – Ferruccio Mar 10 '11 at 19:35
k is super easy to recognize, and as @hgpc mentioned, works well for autocomplete. Preprocessor macros use the all caps, so maybe it is nicer to use them for that alone. – orange80 Aug 5 '11 at 21:57
All upper case constants in obj-c is not a good idea because that is typically reserved for #defines – Answerbot Mar 12 at 17:59
feedback

Your Answer

 
or
required, but never shown

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