NotificationCenter观察模式
主要方法:
NotificationCenter::getInstance()->addObserver(this, callfuncO_selector(jichen::getMsg), "test", nullptr); NotificationCenter::getInstance()->postNotification("test",nullptr);//发送消息,调用方法
void jichen::getMsg(Ref* sender) {//传递方法,无法传递数据 log("getMsg in jichen"); }