i have a question about using getters and instance variables. Let's see an example.
Suppose i have in a .h file:
@property (nonatomic,strong) NSString *name
and in the .m file i synthesize that variable in this way:
@synthesize name = _name;
Now my question is: what's the difference between use:
[self.name aMethod]
and
[_name aMethod]
Thanks!