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 WANT to use NSinteger variable *strength in my code with if condition but it's not work.. :(

if(strength == 11){
}

How can i use if with NSInteger*

share|improve this question
Why with a *? NSInteger is not an object. – Di Wu Jan 25 '11 at 8:11

2 Answers

up vote 7 down vote accepted

NSInteger is a primitive value type; you don't really need to use pointers. So your declaration should read

NSInteger strength;

And not

NSInteger *strength;

However if you do need to use a pointer to an NSInteger (that is, NSInteger *) for some reason, then you need to dereference the pointer to get the value:

if (*strength == 11) {
}

but from what I see, I don't think this is the case.

share|improve this answer
+1 Nice tip.... – EmptyStack Jan 25 '11 at 9:11

I assume you must be adding an * when you declare your strength variable. You shouldn't have it because NSInteger is a primitive type.

Why don't I declare NSInteger with a *

share|improve this answer

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.