Possible Duplicate:
Prefixing property names with an underscore in Objective C
iPhone App Developer Beginner here:
in .h
@property (nonatomic, retain) IBOutlet UILabel *detailDescriptionLabel;
in .m
@synthesize detailDescriptionLabel = _detailDescriptionLabel;
I'm used to seeing
@synthesize detailDescriptionLabel;
the = _
is throwing me off, what is this doing?