我正在尝试让 NSNotifications 工作。此刻,没有成功。
在我的 appDelegate.m 文件中,我有:
[[NSNotificationCenter defaultCenter] postNotificationName:@"first" object:nil];
在我的 mainViewController.m 中,我有 viewDidLoad 方法
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(firstRun)name:@"first" object:nil];
并创建了一个方法(也在 mainViewController.m 中):
-(void) firstRun:(NSNotification *) notification
{
NSLog(@"This works!");
}
但是,运行应用程序时,我在日志中看不到任何输出。
我的代码有什么问题?请指教。