Jd's Exceptions

cocos2d-x, TextField, Hide keyboard(IME)

Below code don't work to hide keyboard

_textField->setDetachWithIME(true);      //(X)

So I use other way like

static_cast<CCTextFieldTTF*>(_textField->getVirtualRenderer())->detachWithIME();    //(O)