0

我正在尝试将我的代码转换为现代 Objective-C 风格。我如何在这里阅读http://www.techotopia.com/index.php/The_Basics_of_Modern_Objective-C ”:“但是,在现代 Objective-C 的情况下,默认情况下会进行合成,因此无需使用 @synthesize 声明. 使用默认属性合成时,可以使用带有下划线前缀的属性名称从代码中访问实例变量属性。”

但是,我有:

关系.h

@interface Relationship : NSObject <NSCoding>
//...
@property(nonatomic, weak) Person* first;
//...
@end`

其他关系.h

#import "Relationship.h"

@interface OtherRelationship : Relationship

@end

其他关系.m

#import "OtherRelationship.h"

@implementation OtherRelationship

@synthesize first = _first;

- (void)foo
{
NSLog(@"%@", _first);
}

它正在工作。但是当我删除

 @synthesize first = _first;

我收到“使用未声明的标识符'_first'”错误。继承变量是否不适用于自动合成,还是我应该在其他地方寻找问题?

4

1 回答 1

3

超类中的支持 ivar 是子类的 @private。也就是说,子类可以调用self.first,但不能调用_first。如果您想再次@synthesize,请使用不同的名称,因为您不能引用 _first。例如,替换为@synthesize first = _ffirst;或直接删除 @synthesize。

于 2013-03-22T16:37:43.627 回答