*I'm not sure if StackOverflow is correct place for this question so please let me know if it is not.
In Apple's iOS 5 sample code (I don't think it appeared pre iOS 5) they have changed how they declare instance variables.
In the header file they no longer declare the variable and @property, they only do the @property.
e.g. instead of
{
NSString *myVariable;
}
@property (strong, nonatomic) NSString *myVariable;
it's just:
@property (strong, nonatomic) NSString *myVariable;
In the implementation file they property is synthesized like this:
myVariable = _myVariable
And then throughout the code sometimes it is referred to as self.myVariable and other times _myVariable.
Could someone please explain to me the correct usage (when should it use self.myVariable vs. _myVariable
And why are variables no longer declared separately from @properties?