我的代码在以下位置崩溃:
[[NSNotificationCenter defaultCenter] postNotificationName:kgotNotification object:dictionary];
我的假设是我在添加观察者之前发布通知。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(getItems:) name:kgotNotification object:nil];
有没有办法在发布通知之前检查活跃观察者的名单?