object-cにおける@synthesizeの用途
485 ワード
In your class implementation, you can use the
You can combine the
@synthesize
compiler directive to ask the compiler to generate the methods according to the specification in the declaration: @synthesize flag;
@synthesize nameObject;
@synthesize rootView;
You can combine the
@synthesize
statements in a single line if you want: @synthesize flag, nameObject, rootView;