0

For example:

@synthesize wheelImageView = _wheelImageView;
Ferruccio
  • 98,941
  • 38
  • 226
  • 299
awlcs
  • 606
  • 2
  • 13
  • 31

1 Answers1

4

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
  • 98,941
  • 38
  • 226
  • 299