0

Possible Duplicates:
Obj-C @synthesize
Synthesized property and variable with underscore prefix: what does this mean?

Whats the use of having synthesize statement like this

@synthesize popOverTableData = _popOverTableData;

Thanks!

Community
  • 1
  • 1
Ram
  • 2,503
  • 2
  • 16
  • 14

1 Answers1

0

It simply states that the backing variable for popOverTableData is _popOverTableData. Normally without this, and just doing @synthesize popOverTableData means that the backing variable is called the same.

Simon Lee
  • 22,304
  • 4
  • 41
  • 45