tags:

views:

45

answers:

1

For example:

@synthesize wheelImageView = _wheelImageView;
+4  A: 

That will cause Objective-C to create a getter and setter named wheelImageView which is bound to the _wheelImageView instance variable.

@synthesize wheelImageView;

will create getters and setters bound to an ivar with the same name;

Ferruccio
only setter will be called setWheelImageView
Vladimir