在 interface 部分设置 readonly 属性时,这会“禁用”该属性的 setter 方法。我需要澄清一下:
- 如果我们可以使用 _propertyName 设置只读属性,那么它的意义何在?
如果我们的属性是可读写的,何时使用 _propertyName?
此外,我了解我们使用 setter 方法进行一定程度的抽象,而不仅仅是使用 _propertyName 分配值。还有其他不使用 _propertyName 的理由吗?
下面是一些示例代码。谢谢你。
接口部分
@property (nonatomic, readonly) NSString *licensePlate;
@property (nonatomic, readonly) NSString *bodyColor;
实施部分
-(id) initWithCarFeatures {
self = [super init]
if (self) {
_licensePlate = @"XSHJDS8687";
_bodyColor = @"blueColor";
}
return self;
}