在LabelTest类里有段函数, 是可以正常显示中文的
LabelTTFChinese::LabelTTFChinese()
{
CCSize size = CCDirector::sharedDirector()->getWinSize();
CCLabelTTF *pLable = CCLabelTTF::create(“中国”, “Marker Felt”, 30);
pLable->setPosition(ccp(size.width / 2, size.height /2));
this->addChild(pLable);
}
我把整段实现代码复制到其他工程, 运行时显示的却是乱码? 是不是还要有什么设置呢? 忘解