您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
CCEditBox 编辑框
要使用CCEditBox要加如下头文件和命名空间的声明
#include "cocos-ext.h" usingn amespace cocos2d; using namespace extension;
bool HelloWorld::init() { ////////////////////////////// // 1. super init first if ( !CCLayer::init() ) { return false; } CCSize size = CCDirector::sharedDirector()->getWinSize(); CCScale9Sprite* sacel9SprY = CCScale9Sprite::create("Icon@2x.png"); CCEditBox* box = CCEditBox::create(CCSizeMake(300, 100), sacel9SprY); //设置编辑框内的文字 // box->setText("xcc"); //设置位置 box->setPosition(ccp(200, 200)); //获取编辑框内的文字 CCLOG("Text:%s",box->getText()); box->setDelegate(this); //设置文本的颜色 box->setFontColor(ccc3(255, 0, 0)); //当编辑框中没有任何字符的提示 box->setPlaceHolder("请输入账号:"); //最大输入文本长度 box->setMaxLength(3); box->setInputMode(kEditBoxInputModeAny); // kEditBoxInputModeAny: 开启任何文本的输入键盘,包括换行 // kEditBoxInputModeEmailAddr: 开启 邮件地址 输入类型键盘 // kEditBoxInputModeNumeric: 开启 数字符号 输入类型键盘 // kEditBoxInputModePhoneNumber: 开启 电话号码 输入类型键盘 // kEditBoxInputModeUrl: 开启 URL 输入类型键盘 // kEditBoxInputModeDecimal: 开启 数字 输入类型键盘,允许小数点 // kEditBoxInputModeSingleLine: 开启任何文本的输入键盘,不包括换行 box->setReturnType(kKeyboardReturnTypeSearch); // kKeyboardReturnTypeDefault: 默认使用键盘return 类型 // kKeyboardReturnTypeDone: 默认使用键盘return类型为“Done”字样 // kKeyboardReturnTypeSend: 默认使用键盘return类型为“Send”字样 // kKeyboardReturnTypeSearch: 默认使用键盘return类型为“Search”字样 // kKeyboardReturnTypeGo: 默认使用键盘return类型为“Go”字样 //设置该属性输入密码时为替代符 box->setInputFlag(kEditBoxInputFlagPassword); this->addChild(box); return true; } void HelloWorld::editBoxEditingDidBegin(cocos2d::extension::CCEditBox *editBox) { CCLOG("start edit"); } void HelloWorld::editBoxEditingDidEnd(cocos2d::extension::CCEditBox *editBox) { CCLOG("end edit"); } void HelloWorld::editBoxReturn(cocos2d::extension::CCEditBox *editBox) { CCLOG("editboxreturn"); } void HelloWorld::editBoxTextChanged(cocos2d::extension::CCEditBox *editBox, const std::string &text) { CCLOG("textchanged"); }
代码下载: http://pan.baidu.com/share/link?shareid=3575767427&uk=3189484501
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。