NSNotificationでaddObserverする際に、通知の送り手を指定できるのに指定しても動作しなかったのでメモ。 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(method:) name:@"notif" object:nil]; //誰が送ってこようが気にしない [[NSNotificationCenter defaultCenter] postNotificationName:@"notif" object:nil]; //誰が送ってるかを指定しない [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(method:) name:@"notif" object:self]; //