0
[[NSNotificationCenter defaultCenter] addObserver:self 
                                         selector:@selector(requestAddressUpdatedNotification:) 
                                             name:MTAddressUpdatedNotification 
                                           object:nil];

谁能告诉我如果我在我的程序中编写这段代码会发生什么?

requestAddressUpdatedNotification什么时候调用该方法?

4

1 回答 1

4

代码通知默认值在发生 a 时NSNotificationCenter通知您的对象 ( self)MTAddressUpdatedNotification NSNotification并触发requestAddressUpdatedNotification:必须@implementation…@end在同一类中定义的方法(在 内)。

于 2012-08-14T08:44:05.410 回答