关于中文乱码的问题,我试了一下,有3中解决方法:
1、转码 http://www.58player.com/article-84994-1.html
我试过了可以,把wSupportTool类加进去的时候,记得在string和wstring之前加std::
2、使用xml http://www.cocoachina.com/bbs/read.PHP?tid=215686
用这个帖子里6楼的方法是可以的
3、用图片
1、转码 http://www.58player.com/article-84994-1.html
我试过了可以,把wSupportTool类加进去的时候,记得在string和wstring之前加std::
2、使用xml http://www.cocoachina.com/bbs/read.PHP?tid=215686
用这个帖子里6楼的方法是可以的
3、用图片
ValueMap value_map = FileUtils::getInstance()->getValueMapFromFile("Chinese.plist");
std::string info = value_map.at("show").asString();
std::string info = value_map.at("show").asString();
auto label_1 = Label::createWithSystemFont(A2U("这是一个Label!"),"Arial",25);
label_1->setPosition(Vec2(visibleSize.width / 2,visibleSize.height / 2));
this->addChild(label_1,1);
label_1->setPosition(Vec2(visibleSize.width / 2,visibleSize.height / 2));
this->addChild(label_1,1);
auto label = Label::createWithSystemFont(info,24);
原文链接:https://www.f2er.com/cocos2dx/342781.html