Cocos2dx NotificationCenter(广播或通告)的使用方法

前端之家收集整理的这篇文章主要介绍了Cocos2dx NotificationCenter(广播或通告)的使用方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的Cocos2d-x相关文章