黑马程序员技术交流社区

标题: 关于@property+@synthesize [打印本页]

作者: 核酸的双链    时间: 2015-12-11 23:27
标题: 关于@property+@synthesize
@property特性:
1) @property只能写在@interface @end中。
2) @property 用来自动生成实例变量age的get/set方法的声明(xcode4.4以前).
格式:
@property <#类型#> <#实例变量名去掉下划线#>;
//--------------------------------
@interface Person : NSObject
{
    NSString *_name;
}
//帮_name  生成   set/get方法的声明
@property NSString *name;
@end
//-----------------------------------
@synthesize的语法:
1)一定要搭配@property使用,不能单独使用
2)配合使用的时候  @property负责生成set/get方法的声明, @synthesize负责生成set/get方法的实现.
格式:
@synthesize <#property#>;


作者: 不提也罢    时间: 2015-12-11 23:28
666,希望继续解析后面内容




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