I'm having some issues where my posted notification:
[[NSNotificationCenter defaultCenter] postNotificationName:@"MobileProviderChanged"
object:self.selectedProviderID];
Is not being trapped by my observer:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(onProviderChanged:)
name:@"MobileProviderChanged"
object:nil];
The exact same observer works correctly in a different ViewController.
Any tips on methods to debug this further to see what messages are actually posted to the defaultCenter?
Thanks.