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!");
}
ただし、アプリの実行時にログに出力が表示されません。
私のコードの何が問題になっていますか?お知らせ下さい。