因为当同时复写了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