NSnotification无法正常工作?

时间:2013-07-27 10:48:14

标签: ios objective-c uiviewcontroller nsnotifications

我的home viewcontroller中有两个viewcontrollers,我有一个方法定义如

-(void)refresh:(NSNotification*)notification
{

}

我在viewDidLoad语句下面使用的同一类NSNotification方法:

 [[NSNotificationCenter defaultCenter] addObserver:self
                                          selector:@selector(refresh:)
                                              name:@"subMitReport2"
                                            object:nil];

在我的第二课中,我必须调用刷新方法

所以,我正在使用以下声明,但它不起作用。它没有调用home viewcontroller刷新方法。

[[NSNotificationCenter defaultCenter] postNotificationName:@"subMitReport2" 
                                                    object:self];

0 个答案:

没有答案