首页 > 代码库 > property,synthesize

property,synthesize

1、默认访问跟property同名的成员变量。

如: 有成员变量 int age ; int age1;

@property int age;

@sythesize  age;

  则代表的是成员变量age的getter和setter方法。

 

2、使用property和synthesize时,可以省略该成员变量的声明。

property,synthesize