Possible Duplicate:
How does an underscore in front of a variable in a cocoa objective-c class work?
Can anyone point me to an explanation of the use of underscores, I have always assumed that they are used to highlight that you are accessing the iVar [_window release];
rather than accessing the iVar via a setter/getter method [[self window] release];
or [self.window release];
I just want to verify that my understanding is correct.
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UILabel *markerLabel;
@synthesize window = _window;
@synthesize markerLabel = _markerLabel;