在以前版本中,
CCTMXTiledMap *mymap = CCTMXTiledMap::create(“aaa.tmx”);
CCDictionary *mydata = mymap->propertiesForGID(1);
得到的是个CCDictionary ,
3.0里面:
Value mydata = map->propertiesForGID(tiledGid);
在3.0里面很多以前返回CCDictionary 的地方都改成了返回Value
请问该怎么使用value???
谢谢指教
