CCnotificationCenter 通知

来源:互联网 发布:福州市人口数据 编辑:程序博客网 时间:2024/05/16 08:20
1//发送事件
02CCNotificationCenter::sharedNotificationCenter()->postNotification(CLICK_TEST_MSG, (CCObject*)data);
03 
04//监听事件
05void GameManager::initListener()
06{
07    CCNotificationCenter::sharedNotificationCenter()->addObserver(this, callfuncO_selector(GameManager::onClickTest), CLICK_TEST_MSG, NULL);
08}
09 
10//处理事件
11void GameManager::onClickTest(CCObject* obj)
12{
13    CCMessageBox("onClickTest""Title");
14 
15    //移除监听事件
16    CCNotificationCenter::sharedNotificationCenter()->removeObserver(this, CLICK_TEST_MSG);
17}
0 0