我的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];