私は以下を使用して通知を送信しています:
[[NSNotificationCenter defaultCenter] postNotificationName:@"historyLoaded" object:jsonReturn];
そして、次を使用して通知を受け取ります。
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(manageHistory:) name:@"historyLoaded" object:nil];
次に、セレクターのメソッドは次のとおりです。
- (void) manageHistory: (NSNotification *) historyData{
NSLog(@"this bit of code was run");
}
なぜか通知が届かない。アプリ内のどこからでも通知を送受信できますか?