I have been synthesizing objects in my .m file this way:
@synthesize myObject;
And if I have many objects, I do it like this:
@synthesize myObject1, myObject2, myObject3;
However I see some people synthesize this way:
@synthesize myObject = _myObject;
Can somebody explain which is better way to synthesize the object?