我送使用的通知: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通知没有通过。可以在应用程序的任何位置发送和接收通知吗?
我有上面写的应该为你工作的代码。 –