从A——>B
在B界面点击事件中执行,返回A
[self dismissViewControllerAnimated:YES completion:^{
[[NSNotificationCenter defaultCenter] postNotificationName:@"loginsuccess" object:self];
}];
在A界面注册广播在ViewWillAppear中执行NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
[nc addObserver:self
selector:@selector(handleColorChange:)
name:@"loginsuccess"
object:nil];
并且在A界面中添加接受广播后执行方法-(void)handleColorChange:(NSNotification*)sender{
NSLog(@"%@",sender);
}