Ok, I am confused! I used to use -> whenever I accessed my instance objects, but now I see that after I set them in my application:didFinishLaunching like this:
self->counter = [NSNumber numberWithFloat:0.0f];
Down the road I got thrown out with an Exception, checked my debugger and saw that counter was pointing to a <non objective c object>
I changed the line to :
self.counter = [NSNumber numberWithFloat:0.0f];
And now I see in the debugger that I have yes another variable.
So, what is happening here?