nh
UILabel *_detailDescriptionLabel; } @property (strong, nonatomic) IBOutlet UILabel *detailDescriptionLabel;
in .m
@synthesize detailDescriptionLabel = _detailDescriptionLabel;
This line means that the "detailDescriptionLabel" property will have a setter and getter for the class attribute named "_detailDescriptionLabel"
If the name was the same, you will have
@synthesize detailDescriptionLabel;
source share