my code is crashing at:
[[NSNotificationCenter defaultCenter] postNotificationName:kgotNotification object:dictionary];
my assumption is that I am posting a notification before the observer is added.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getItems:) name:kgotNotification object:nil];
is there a way to check for the list of active observers before posting a notification?