Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to create a class with static const variables that can be used from outside the class, but I cannot figure out how to initialize this variable.

Example Code:

@interface ExampleClass
{
 static const int CONST_VAR;
}

- (id) init;

@end
@implementation ExampleClass

- (id) init {
 CONST_VAR = 1;
}

@end

I want to be able to reference the static constant variable like this:

ExampleClass.CONST_VAR;
share|improve this question

1 Answer

up vote 0 down vote accepted

You should assign a value to this static variable by doing the following:

-(id)init{
    ExampleClass.CONST_VAR = 1;
}

Because this is a static variable or "class variable", you must use the class name in any case regardless of where you are this includes from inside the same class.

Hope this helps.

share|improve this answer
1  
I found my problem, the static variables, should have been in the @implementation – Cameron Jul 15 '12 at 0:05

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.