码迷,mamicode.com
首页 > 其他好文 > 详细

Cocos2d-X解析XML文件

时间:2014-11-11 02:02:30      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   os   sp   for   文件   

xml

<dict>
<key>1</key>
<string>Susake</string>
<key>2</key>
<string>游戏</string>
</dict>

核心代码

CCDictionary *strings = CCDictionary::createWithContentsOfFile("feature.xml");
std::string str = ((CCString*)strings->objectForKey("1"))->getCString();
CCLabelTTF  *labelHello = CCLabelTTF::create(str, "Arial", 24);
labelHello->setPosition(300, 300);
this->addChild(labelHello, 7);

 

  

Cocos2d-X解析XML文件

标签:style   blog   io   color   ar   os   sp   for   文件   

原文地址:http://www.cnblogs.com/Susake/p/4088598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!