Using a UITabBar, I have 4 sibling views (one per tab item). When the app loads, the first tab item and view are visible. That first view has an IBAction that posts an NSNotification. Each of the other three views have observers for the notification but they cannot "hear" the notification until they are first made visible by touching the tab bar item.
Is is possible to post an NSNotification to a sibling view's NSNotification observer before the sibling is activated or a way to load the sibling views in a manner that they can observer notifications without first activating them?