我试图了解如何在 Xcode 中使用绑定。我有这堂课:
#import <Foundation/Foundation.h>
@interface OddsItem : NSObject {
NSMutableDictionary *properties;
}
@property(nonatomic, retain) NSMutableDictionary *properties;
@end
和
#import "OddsItem.h"
@implementation OddsItem {
}
@synthesize properties;
- (void)dealloc {
[properties release];
[super dealloc];
}
@end
这符合 KVC 吗?我发现的例子似乎是在合成属性之前。
如果它不符合 KVC,我必须做什么才能做到这一点?