Possible Duplicate:
How does an underscore in front of a variable in a cocoa objective-c class work?
I am beginner in ios app development.I looked over many tutorial and i came across following line
.h file contains:
@property (strong) ScaryBugData *data;
.m contains:
@synthesize data = _data;
But I am not getting meaning of data = _data
.
why this is required or what it means.
ref : http://www.raywenderlich.com/1797/how-to-create-a-simple-iphone-app-tutorial-part-1