作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
@interface Article : NSObject
@property (nonatomic, strong) NSString *imageURLString;
@end
@implementation Class
@synthesize imageURLString = _imageURLString;
- (void)setImageURLString:(NSString *)imageURLString {
_imageURLString = imageURLString;
//do something else
}
启用 ARC 时我是否正确覆盖了 setter?
最佳答案
是的,这是正确的。我也花了一段时间才相信这确实是正确的做法。
您确实意识到在这种情况下,覆盖是不必要的,因为您不会做比标准生成的 setter 更多的事情?仅当您向 setImageURLString:
添加更多代码时,您才需要重写 setter。
关于iphone - 用圆弧覆盖设定器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7930654/
我想成为 Spark 纱客户(link)。是否需要安装hadoop?还是只安装 yarn 可以吗? (by this link) 最佳答案 No Spark不需要Hadoop即可运行。 Apache
我是一名优秀的程序员,十分优秀!