Just wondering if there is a way to use a NSNotification observer as an if statement argument, or to have a block of code in your selector section
EG
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector( { SOME NEW CODE GOES HERE! ) name:@"addressTypeChanged" object:nil];
OR
if ([[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(self) name:@"addressTypeChanged" object:nil]) {
//some code//
}