假设有一个 UIView 内部包含一个 UILabel 。
UIView 的公共(public)界面在它的.h 中如下:
@interface MyView : UIView
@property (nonatomic, copy) NSString *text;
@end
并且私下在它的 .m 中:
@interface MyView ()
@property (nonatomic, strong) UILabel coolLabel;
@end
在它的 .m 中实现:
@implementation
- (void)setTextNSString *)text
{
self.coolLabel.text = text;
}
- (NSString *)text
{
return self.coolLabel.text;
}
@end
查看公共(public)接口(interface),我用 copy 声明 @property (nonatomic, copy) NSString *text 因为文本是由 coolLabel 内部。但是,我不确定这是否正确。
声明应该是 @property (nonatomic, assign) NSString *text 和一个 assign 因为我的类没有专门执行内存管理?还是我当前的接口(interface)声明正确?
仅供引用,一切都假设 ARC
Best Answer-推荐答案 strong>
你的 text 属性应该是 copy 因为它的值最终会被标签复制。
property 定义就像一个契约(Contract)。您正在告诉属性的用户如何处理该值。由于标签复制了文本,因此您应该指出您的属性正在被复制。
关于ios - 用于转发到 Objective-C 中复制的属性的正确属性语义,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/23374464/
|