在我的applicationWillEnterForeground
中,如果需要刷新数据,我会检查并发送通知:
[[NSNotificationCenter defaultCenter] postNotificationName:@"refreshModelNotification" object:nil];
该特定通知的唯一观察者是特定的视图控制器:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(refreshData:) name:@"refreshModelNotification" object:nil];
该视图控制器是UITabBarController
.
我的问题是:如果在发送通知时该视图控制器不是活动选项卡会发生什么?
提前致谢。