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 have an if statement like this

@property (nonatomic) NSUInteger *theScore;


if (hint.hidden) {
    theScore += (2);
        } else {
            theScore += (1);
                }
NSLog(@"Score changed");
score.text = [NSString stringWithFormat:@"%d", theScore];

But instead of theScore increasing by 2 or 1 it's increasing by 8 or 4

Any ideas?

share|improve this question

1 Answer

up vote 4 down vote accepted

Because it's a pointer to the integer, not the integer itself. The 4 is the SIZE of the integer.

Change it to NSUInteger theScore, without the *.

share|improve this answer
Wow that was foolish of me, thanks a lot – user1282180 Jul 7 '12 at 19:18

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.