@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
@synthesis 使用的时候注意的地方,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/sokeyer/p/3745249.html