美文网首页
同时重写属性的get和set方法系统报错问题处理

同时重写属性的get和set方法系统报错问题处理

作者: YGoooooooooal | 来源:发表于2016-12-26 11:41 被阅读52次

    因为当同时复写了get和set方法之后@property默认生成的@synthesize就会冲突,需要声明此时的get和set方法针对的是同一个属性。
    eg.

    @property (nonatomic, strong) NSString *name;

    @synthesize name = _name

    相关文章

      网友评论

          本文标题:同时重写属性的get和set方法系统报错问题处理

          本文链接:https://www.haomeiwen.com/subject/hidjvttx.html