聲明一個(gè)屬性時(shí), 頭文件中:
@interface MyClass : NSObject
{
float value;
}
@property float value;
@end
實(shí)現(xiàn)文件中:
@synthesize float value;
@synthesize 指令相當(dāng)于讓編譯器同時(shí)為你實(shí)現(xiàn)getter和setter方法,等同于:
-(float)value;
-(void)setValue:(float)newValue;
當(dāng)有一種情況例外,就是當(dāng)屬性是boolean類(lèi)型時(shí)。
另外,如果你只需要實(shí)現(xiàn)getter或setter中的某一個(gè)方法,那么就不需要使用@synthesize指令,只需要實(shí)現(xiàn)上訴兩個(gè)方法中的其中一個(gè)就可以了。
更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄