coco2d-x CCTextFieldTTF最简单的方法实现密码登陆“*”
最简单的方法使用CCTextFieldTTF设置图密码框,
首先类的继承关系
class Login:public cocos2d::CCLayer,CCIMEDelegate,CCTextFieldDelegate
最有是这几个方法
// CCTextFieldDelegate virtual bool onTextFieldAttachWithIME(CCTextFieldTTF * pSender); virtual bool onTextFieldDetachWithIME(CCTextFieldTTF * pSender); virtual bool onTextFieldInsertText(CCTextFieldTTF * pSender, const char * text, int nLen); virtual bool onTextFieldDeleteBackward(CCTextFieldTTF * pSender, const char * delText, int nLen); virtual bool onDraw(CCTextFieldTTF * pSender);
先在这个bool Login::onTextFieldInsertText(CCTextFieldTTF * pSender, const char * text, int nLen)方向里加入以下代码
int count=((pSender->getCharCount())>0?(pSender->getCharCount()):1);
if (count<=0)
{
count=1;
}
std::string paSt(count,'*');
pSender->setString(paSt.c_str());
这样,每输入一个字符,上一个字符就变成了“*”
输入接收后,这这个bool Login::onTextFieldDetachWithIME(CCTextFieldTTF * pSender)方法里
std::string pstr=pSender->getPlaceHolder();
if (pstr=="password...")
{
std::string *inpstr=pSender->m_pInputText;
std::string showstr(inpstr->c_str(),0,inpstr->length()-1);
pSender->setString(showstr.c_str());
}
这样就全部显示成了“*”
注意这里pSender->m_pInputText;会报错了,进入CCTextFieldTTF.h,将m_pInputText该成public的就OK了!
本方法也许会有问题!因为修改了框架源码!但是我暂时没有发现!本人也在学习中,发现问题的希望大家留意讨论!
- 发表评论
-
- 最新评论 更多>>