Coco2dx

1.中文编码
auto chnStrings = Dictionary::createWithContentsOfFile("CHN_Strings.xml");
//通过xml文件中的key获取value
const char str1 = ((String)chnStrings->objectForKey("string1"))->getCString();
//创建一个标签显示出来
auto
label1 = Label::create(str1, "Arial", 36);
label1->setPosition(320,270);
addChild(label1);

注意的
添加图片要 addfile

声明属性
cocos2d::ProgressTimer* progress1;//定义进度条指针

你可能感兴趣的:(Coco2dx)