码迷,mamicode.com
首页 > 其他好文 > 详细

OC 中 @synthesize 关键字介绍和使用

时间:2015-05-13 16:35:52      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

@synthesize用法

1)@property int age; @synthesize age; 表示生成.h中变量 age的 get和 set方法

注意:
    如果@synthesize 变量名要先在.h文件中声明
    @property int age; @synthesize age;展开形式如下:

    .h
    -(void)setAge:(int ) age;
    -(int)age;

  .m
  -(void)setAge:(int) age{
    slef->age=age;
  }
  -(int)age{
    return age;
  }

错误用法,只写了@synthesize,没有写 @property,也没有定义变量 NSString *name;

  

如果两个实例变量的类型一致

@synthesize age,weight;

  

 

OC 中 @synthesize 关键字介绍和使用

标签:

原文地址:http://www.cnblogs.com/developer-wang/p/4500534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!