我送使用的通知:NSNotification是否可以在任何地方使用?
[[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");
}
對於一些reaason通知沒有通過。可以在應用程序的任何位置發送和接收通知嗎?
我有上面寫的應該爲你工作的代碼。 –