首页 > 代码库 > @synthesis 使用的时候注意的地方

@synthesis 使用的时候注意的地方

@implementation

@synthesis age;   // 就等于@synthesis age = age 得到同名的instance variable  age 和-setAge,   -age 这两个accessor.

@end

如果

@implementation

// no @synthesis    等于@synthesis age = _age  得到有_的instance variable _age and -setAge, -age two accessor.

@end