为什么NSNotificationCenter在模拟器中失败但在真实设备上运行?

时间:2017-04-15 03:04:46

标签: ios nsnotificationcenter

我正在使用NSNotificationCenter将来自异步Web服务调用的消息传递回主菜单UIViewController,这在真实设备上100%有效,但在Xcode模拟器中失败,如果这在模拟器中不起作用?

以下代码位于viewDidLoad

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

在Web服务调用中,我将从完成块发送此消息

 [[NSNotificationCenter defaultCenter]
                                              postNotificationName:@"tillConfigObjectDownloaded" object:nil];

为什么每次都在真实设备上工作而在模拟器中失败?

0 个答案:

没有答案