键值观察 - 如何观察对象的所有属性



我对键值观察(KVO)的使用以及如何注册以接收属性更改通知感到满意:

[account addObserver:inspector
          forKeyPath:@"openingBalance"
             options:NSKeyValueObservingOptionNew
              context:NULL];

但是,如果我想观察帐户对象的所有属性的变化,我该如何实现呢?我必须为每个物业注册通知吗?

似乎没有内置函数来订阅对象所有属性的更改。

如果你不关心哪个属性发生了变化,并且可以更改你的类,你可以向它添加虚拟属性来观察其他属性的变化(使用+ keyPathsForValuesAffectingValueForKey+keyPathsForValuesAffecting<Key>方法):

// .h. We don't care about the value of this property, it will be used only for KVO forwarding
@property (nonatomic) int dummy;
#import <objc/runtime.h>
//.m
+ (NSSet*) keyPathsForValuesAffectingDummy{
    NSMutableSet *result = [NSMutableSet set];
    unsigned int count;
    objc_property_t *props = class_copyPropertyList([self class], &count);
    for (int i = 0; i < count; ++i){
        const char *propName = property_getName(props[i]);
        // Make sure "dummy" property does not affect itself
        if (strcmp(propName, "dummy"))
            [result addObject:[NSString stringWithUTF8String:propName]];
    }
    free(props);
    return result;
}

现在,如果您观察dummy属性,则每次更改任何对象的属性时,您都会收到 KVO 通知。

您还可以像发布的代码一样获取对象中所有属性的列表,并在循环中为每个属性订阅 KVO 通知(因此您不必对属性值进行硬编码) - 这样,如果需要,您将获得更改的属性名称。

以下 Swift 代码为每个属性添加观察值,如 David van Brink 所建议的那样。它有一个额外的功能来删除观察结果(例如在deinit):

extension NSObject {
    func addObserverForAllProperties(
        observer: NSObject,
        options: NSKeyValueObservingOptions = [],
        context: UnsafeMutableRawPointer? = nil
    ) {
        performForAllKeyPaths { keyPath in
            addObserver(observer, forKeyPath: keyPath, options: options, context: context)
        }
    }
    func removeObserverForAllProperties(
        observer: NSObject,
        context: UnsafeMutableRawPointer? = nil
    ) {
        performForAllKeyPaths { keyPath in
            removeObserver(observer, forKeyPath: keyPath, context: context)
        }
    }
    func performForAllKeyPaths(_ action: (String) -> Void) {
        var count: UInt32 = 0
        guard let properties = class_copyPropertyList(object_getClass(self), &count) else { return }
        defer { free(properties) }
        for i in 0 ..< Int(count) {
            let keyPath = String(cString: property_getName(properties[i]))
            action(keyPath)
        }
    }
}

最新更新