我有一个活动
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(startGameHandler:) name:START_GAME_EVENT object:nil ];
在我的其他课程中,我点击按钮后触发此通知
[[NSNotificationCenter defaultCenter] postNotificationName:START_GAME_EVENT object:nil ];
我肯定会看到按钮被点击以触发通知,但是没有看到发送事件的结果文本。
我的代码中有人看错了吗?我是否需要指定我正在处理的图层/节点? 希望有人可以帮忙!