码迷,mamicode.com
首页 >  
搜索关键字:ccstring    ( 14个结果
lua调用C++
根据pkg文件生成.h文件:tolua++ -vtolua++-1.0.92 (written by W. Celes, A. Manzur)tolua++ -o L_CCObject.h CCObject.pkgtolua++ -o L_CCString.h CCString.pkg 运行结果:D ...
分类:编程语言   时间:2020-05-22 14:26:29    阅读次数:58
cocos2d-x类型转换(CCstring int string char UTF-8互转)
http://www.cnblogs.com/leehongee/p/3642308.html ...
分类:其他好文   时间:2017-06-14 14:28:52    阅读次数:310
类型转换(CCstring int string char UTF-8互转)
在做数据转换时,最好包含以下头文件#include #include #include #include USING_NS_CC;using namespace std;在cocos2d-x中,也有一个格式刷:CCString(数据转换常常找她做中间人),那么我们要转换类型,可先将起始数据类型刷成C... ...
分类:其他好文   时间:2017-01-09 12:56:42    阅读次数:214
CCLablettf读取显示xml文件内容显示中文
CCDictionary *strings = CCDictionary::createWithContentsOfFile("tips2.xml"); const char *hello = ((CCString*)strings->valueForKey("tp1"))->m_sString.c... ...
分类:其他好文   时间:2017-01-09 12:51:25    阅读次数:230
【转载】cocos2d-x类型转换(CCstring int string char UTF-8互转)以及字符串详解
cocos2d-x中的字符串: <1>:使用 const char* 和 std::string const char* 是C风格的字符串 ,std::string 是C++风格的字符串,它封装了 const char * 初始化 std::string 对象: std::string name = ...
分类:其他好文   时间:2016-07-06 18:18:57    阅读次数:196
7.数据本地化CCString,CCArray,CCDictionary,tinyxml2,写入UserDefault.xml文件,操作xml,解析xml
??数据本地化A CCUserDefault系统会在默认路径cocos2d-x-2.2.3\projects\Hello\proj.win32\Debug.win32下生成一个名为UserDefault.xml.全部的key皆为char *型。value类型为bool intfloat double...
分类:其他好文   时间:2016-01-08 18:43:49    阅读次数:523
cocos2d-x类型转换(CCstring int string char UTF-8互转)
在做数据转换时,最好包含以下头文件#include #include#include#includeUSING_NS_CC;using namespacestd;在cocos2d-x中,也有一个格式刷:CCString(数据转换常常找她做中间人),那么我们要转换类型,可先将起始数据类型刷成CCStr...
分类:其他好文   时间:2015-03-11 16:47:13    阅读次数:153
CCString
CCString 简介 CCString继承至CCObject,CCObjecte这个基类主要是为了自动内存管理而创建的。CCString提供一系列的接口,例如create,convert等等。 常用的方法 创建: /**使用std::string创建了一个字符串, 你也可以传递一个c字符串指针,因为std::string的构造函数可以访问c字符串指针 ...
分类:其他好文   时间:2015-02-09 23:12:18    阅读次数:223
Cocos2dx CCLabelAtlas字体与CCLabelTTF字体的使用方法
1.26、字体 1、CCLabelAtlas字体   示例代码:     CCLabelAtlas*LBsocre4 = CCLabelAtlas::create(CCString::createWithFormat("%d", c)->getCString(), "labelatlasimg.png", 24, 32,'0');                 LBs...
分类:其他好文   时间:2015-01-09 21:00:42    阅读次数:348
cocos2d-x 2.x 与 3.x 对照
Cocos2d-x 常用类名改变下面的表格中的类名的转换方式主要是直接删除了 CC 前缀。Cocos2d-x 类名改变下面表格中的类名的转换就比较大了。CCString 用法改变之前:1CCString* str = CCString::createWithFormat("%s.png","picture");现在:1std::string str = StringUtils::format("%...
分类:其他好文   时间:2014-12-17 22:39:39    阅读次数:345
14条   1 2 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!