[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(requestAddressUpdatedNotification:)
name:MTAddressUpdatedNotification
object:nil];
Can anyone tell me what will happen if I write this piece of code in my program ?
And when will the method requestAddressUpdatedNotification
be called?