@property @synthesize

来源:互联网 发布:科比 数据分析 生涯 编辑:程序博客网 时间:2024/04/28 20:02

@property 会自动声明get 和set 方法


@synthesize 会自动 实现get和 get方法   (注: xcode4.5后版本   @synthesize可以省略)


property  会自动生成_name 变量

0 0