【发布时间】:2011-09-21 19:52:15
【问题描述】:
可能的重复:
Obj-C @synthesize
Synthesized property and variable with underscore prefix: what does this mean?
这样的综合语句有什么用
@synthesize popOverTableData = _popOverTableData;
谢谢!
【问题讨论】:
标签: objective-c ios
可能的重复:
Obj-C @synthesize
Synthesized property and variable with underscore prefix: what does this mean?
这样的综合语句有什么用
@synthesize popOverTableData = _popOverTableData;
谢谢!
【问题讨论】:
标签: objective-c ios
它只是声明popOverTableData 的支持变量是_popOverTableData。通常没有这个,只是做 @synthesize popOverTableData 意味着支持变量被称为相同。
【讨论】: