CCTextFieldTTF ios按return 隐藏键盘

修改回调 

onTextFieldInsertText

bool DTCursorTextField::onTextFieldInsertText(cocos2d::CCTextFieldTTF *pSender, const char *text, int nLen)

{

    if(strcmp(text, "\n")==0)

    {

detachWithIME();

        return true;

    }

}

你可能感兴趣的:(CCTextFieldTTF ios按return 隐藏键盘)