1

Interface Builder でを使用してNSView、すべてのコントロールがモデル オブジェクトにバインドされている があります。NSObjectController

これは正しく動作します。ここで、これらのバインディングのいずれかNSViewControllerに変更があった場合はいつでも通知されるようにしたいと考えています。これは可能ですか?もしそうなら、どのように?

4

1 に答える 1

0

KVOを使用してモデルクラスのメンバーを観察することになりました。プロセスを自動化するために (各モデルの各メンバーに対してこれを行うコードを記述する必要がないように)、次のようにしました。

static void *myModelObserverContextPointer = &myModelObserverContextPointer;

- (void)establishObserversForPanelModel:(FTDisclosurePanelModel *)panelModel {

    // Add observers for all the model's class members.
    //
    // The member variables are updated automatically using bindings as the user makes
    // adjustments to the user interface. By doing this we can therefore be informed
    // of any changes that the user is making without having to have a target action for
    // each control.

    unsigned int count;
    objc_property_t *props = class_copyPropertyList([panelModel class], &count);

    for (int i = 0; i < count; ++i){
        NSString *propName = [NSString stringWithUTF8String:property_getName(props[i])];
        [panelModel addObserver:self forKeyPath:propName options:0 context:&myModelObserverContextPointer];
    }
}

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {

    // Check for insertions/deletions to the model

    if (context == myModelObserverContextPointer) {
        if ([_delegate respondsToSelector:@selector(changeMadeToPanelModel:keyPath:)]) {
            [_delegate changeMadeToPanelModel:object keyPath:keyPath];
        }
    }
    else
        [super observeValueForKeyPath:keyPath ofObject:object change:change context:context];

}
于 2014-01-10T14:08:10.027 に答える