vote up 0 vote down star

I need to create static constants in a class that can be used by other classes that import that class. I'm assuming that enum would be the best way to go since I have seen it been used quite often through out Cocoa classes.

flag

25% accept rate
Why do you refer to them as static? Do you mean in a C++ static sense? Objective-C doesn't have the notion of a static class member. – nall Nov 6 at 1:14

1 Answer

vote up 2 vote down

It depends on how the type is going to be used. An enum can be a simple way to create some named values, but NSString constants can mesh better with the rest of Cocoa (for instance, this is how all the attribute keys for NSAttributedString are represented because they're meant to be stored in a dictionary).

link|flag

Your Answer

Get an OpenID
or

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