在网上搜了好几个。。都是2.x的版本,不过变动不大,中文显示还是用的xml,只是api有些微变化
前面的xml文件这些步骤跟2.x版本是相同的
1.创建xml文件,如命名为CHNStrings.xml
<key>language</key>
<string>English</string>
<key>username</key>
<string>我是中文1ab</string>
<key>website</key>
<string>CSDN博客:http://blog.csdn.net/jackystudio</string>
</dict>
TTFConfig ttfConfig("fonts\\123.ttf",25);
CCDictionary *chnStrings = CCDictionary::createWithContentsOfFile("CHN_Strings.xml");
const char* username = ((CCString*)chnStrings->objectForKey("username"))->getCString(); auto labelTTF = Label::createWithTTF(ttfConfig,username); labelTTF->setColor(Color3B(255,255)); labelTTF->setPosition(300,500); pLayer->addChild(labelTTF);