I also found that you can do:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_handleWhateverChange) name:@"whateverChange" object:nil];
To register for change events, and
[[NSNotificationCenter defaultCenter] postNotificationName:@"loadingBomData" object:nil];
To fire them. I might be a N00b but I just couldn't get the observer for key path thing to work for me.