
void HelloWorld::ccTouchesEnded(cocos2d::CCSet* touches, cocos2d::CCEvent* event)
{
static int flag;
CCLOG("ccTouchesEnded,第%d次",++flag);
passWord->attachWithIME();
passWord->setDelegate(this);
this->setPosition(ccp(0, 320));
CCLOG("userNameString: %s",userNameString.c_str());
}
在点击layer后,调出键盘,键盘出来后,layer在点击就无效,求大神解答。