我正在尝试将我的代码转换为现代 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'”错误。继承变量是否不适用于自动合成,还是我应该在其他地方寻找问题?