3
我想了解如何在Xcode中使用綁定。我有這個類:此對象符合KVC嗎?
#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標準,我該怎麼做才能做到這一點?
當我重寫我的'合成'的getter/setter方法時呢?在getter和setter中,我可以直接訪問'_properties'嗎? – hashier 2013-11-28 00:16:07