我有一个支持 KVO 的类(称为它Observee
),它的affectedValue
动态属性受属性的影响affectingValue
。属性之间的依赖关系由实现+keyPathsForValuesAffectingAffectedValue
方法定义。
将值设置为affectingValue
通知affectedValue
已按我的预期更改, 除非 Ovservee
是NSObjectController
. 完整示例如下:
@interface Observee : NSObject // or NSObjectController
@property (readonly, strong, nonatomic) id affectedValue;
@property (strong, nonatomic) id affectingValue;
@property (strong, nonatomic) NSArrayController *arrayController;
@end
@implementation Observee
@dynamic affectedValue;
- (id)affectedValue { return nil; }
+ (NSSet *)keyPathsForValuesAffectingAffectedValue {
NSLog(@"keyPathsForValuesAffectingAffectedValue called");
return [NSSet setWithObject:@"affectingValue"];
}
@end
@interface AppDelegate : NSObject <NSApplicationDelegate>
@property (strong, nonatomic) Observee *observee;
@end
@implementation AppDelegate
- (void)applicationDidFinishLaunching:(NSNotification *)notification {
self.observee = [[Observee alloc] init];
[self.observee addObserver:self
forKeyPath:@"affectedValue"
options:NSKeyValueObservingOptionNew
context:NULL];
NSLog(@"setting value to affectingValue");
self.observee.affectingValue = @42;
}
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context {
NSLog(@"affected key path = %@", keyPath);
}
@end
Observee
该示例工作正常,并在派生时输出如下NSObject
:
keyPathsForValuesAffectingAffectedValue called
setting value to affectingValue
affected key path = affectedValue
但是当Observee
派生时NSObjectController
:
keyPathsForValuesAffectingAffectedValue called
setting value to affectingValue
(请注意,“受影响的密钥路径 = 受影响的值”不存在。)
似乎keyPathsForValuesAffectingAffectedValue
在这两种情况下都调用了它,但在后者中它是无操作的。
此外,任何涉及 (subclass of) 实例的关键路径NSObjectController
都不会影响其他关键路径,例如:
@implementation SomeObject
// `someValue` won't be affected by `key.path.(snip).arrangedObjects`
+ (NSSet *)keyPathsForValuesAffectingSomeValue {
return [NSSet setWithObject:@"key.path.involving.anNSArrayController.arrangedObjects"];
}
@end
在这种情况下,如何声明关键路径之间的依赖关系?而且,为什么这整件事会发生?
(是的,我知道will/didChangeValueForKey:
和朋友们,但是用(另一个)setter 包裹每一个影响关键路径是可怕的,我想避免它。)