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";