NSLog(@"Before: %d",currentArticle);
currentArticle--;
NSLog(@"SUBTRACT %d",currentArticle);
"currentArticle" is an integer. This is only being echoed once in my console. If I do not run this subtraction, the number "currentArticle" remains at 7.
This is being run in the main thread, and only run once per user interaction.
I have also tried
currentArticle = currentArticle - 1;
With the same result. Am I taking crazy pills?
Thanks!
Edit:
Declared as follows:
extern int *currentArticle;
And assigned later as:
currentArticle = 0;
I tried rewriting as this:
int *curArticle; // in my .h file
curArticle = 1;
And then I run the
curArticle--;
and it still decrements by two...
I have stepped through the code and ensured there are no other calls hitting this variable.. Thanks for the feedback so far, I will keep hacking away at it.


currentArticleis an integer. – swegi Mar 10 '11 at 23:31int*as if it was anint, so he's setting the pointer to 7 (not what the pointer points to) and then decrementing by 1int, i.e. 4 bytes, getting the address 3. So changing the environment won't change anything unless he moves to an environment where sizeof(int) != 4 bytes. – filipe Mar 11 '11 at 0:31