1.添加一个观察者
NotificationCenter::getInstance()->addObserver(this,callfuncO_selector(ClassName::method),"message",nullptr);method接收一个Ref*指针,为发送者
2.广播消息
NotificationCenter::getInstance()->postNotification("message",this);发送一个消息,发送者为类本身 原文链接:https://www.f2er.com/cocos2dx/341992.html