I was looking at the source code for a sample application I downloaded and I noticed that the author of the code always syntax like
to call methods on ivars instead of
Is there any reason to use self->, or is it just that person's coding style?
Thanks,
Code:
[self->_someVariable doSomething];
to call methods on ivars instead of
Code:
[_someVariable doSomething];
Is there any reason to use self->, or is it just that person's coding style?
Thanks,