我正在使用NSNotificationCenter将来自异步Web服务调用的消息传递回主菜单UIViewController,这在真实设备上100%有效,但在Xcode模拟器中失败,如果这在模拟器中不起作用?
以下代码位于viewDidLoad
中[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(tillIsReadyToUse:)
name:@"tillConfigObjectDownloaded" object:nil];
在Web服务调用中,我将从完成块发送此消息
[[NSNotificationCenter defaultCenter]
postNotificationName:@"tillConfigObjectDownloaded" object:nil];
为什么每次都在真实设备上工作而在模拟器中失败?