因为当同时复写了get和set方法之后@property默认生成的@synthesize就会冲突,需要声明此时的get和set方法针对的是同一个属性。
eg.
@property (nonatomic, strong) NSString *name;
@synthesize name = _name
因为当同时复写了get和set方法之后@property默认生成的@synthesize就会冲突,需要声明此时的get和set方法针对的是同一个属性。
eg.
@property (nonatomic, strong) NSString *name;
@synthesize name = _name
本文标题:同时重写属性的get和set方法系统报错问题处理
本文链接:https://www.haomeiwen.com/subject/hidjvttx.html
网友评论