For example:
@synthesize wheelImageView = _wheelImageView;
For example:
@synthesize wheelImageView = _wheelImageView;
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;