黑马程序员技术交流社区

标题: @property 与@synthesize 的小作用 [打印本页]

作者: hejianchun    时间: 2015-9-22 09:20
标题: @property 与@synthesize 的小作用
@property int age 是书写在头文件.h当中的,它展开后表示的就是:
- (void) setAge :(int)newAge;
- (int ) age;
而@synthesize 是在.m文件中使用:
@synthesize age 展开后:
- (void) setAge:(int)newAge{
age = newAge;

}
- (int)age{
return age;
}





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2