show/hide this revision's text 2 removed specific info

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:@"loadingBomDatapostNotificationName:@"whateverChange" 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.

show/hide this revision's text 1

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.