我在我的Cocos2d-x 3.0 iOS应用中发布通知,如下所示:
Dictionary *d = Dictionary::create();
d->setObject(Integer::create(123), "someKey");
NotificationCenter::getInstance()->postNotification(someNotification, d);
这很有效。但是,我收到有关Dictionary
和Integer
被弃用的警告。在Cocos2d-x 3.0中通过通知传递信息的首选,不推荐使用的方法是什么?
答案 0 :(得分:2)
v3中Dictionary的替换是cocos2d :: Map
http://www.cocos2d-x.org/reference/native-cpp/V3.2alpha0/de/d5c/classcocos2d_1_1_map.html