Is it ok to send one notification (by one I mean the same postNotificationName: postNotificationName:@"notification_name") in multiple classes? Observer is the AppDelegate.m and it is sharing NSDictionary. Before every class send Notification it is setting value in dic for it key. After AppDelegate receives notification it is checking whether all values in dict are set to yes (all notifications were sent). Is it good method or should I use some other technique?
(Notifications for every classes are send exactly one for each class)