In the first viewcontroller.m, I put this in the viewDidLoad
method:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handle_data) name:@"reload_data" object:nil];
-(void)handle_data {
[yourtableview reloaddata];
}
In the second viewcontroller.m:
[[NSNotificationCenter defaultCenter] postNotificationName:@"reload_data" object:self];
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…