[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(requestAddressUpdatedNotification:)
name:MTAddressUpdatedNotification
object:nil];
如果我在程序中编写这段代码,有人能告诉我会发生什么吗?
何时调用方法requestAddressUpdatedNotification
?
答案 0 :(得分:4)
代码通知默认NSNotificationCenter
在发生self
时通知您的对象(MTAddressUpdatedNotification NSNotification
)并触发必须定义的requestAddressUpdatedNotification:
方法(在{{1}内}})在同一个班级。