this.m_ebTextInput.setFontColor(cc.color(0, 0, 0));
this.m_ebTextInput.setPlaceHolder(“请点击此处输入”);
this.m_ebTextInput.setMaxLength(64);
this.m_ebTextInput.setReturnType(cc.KEYBOARD_RETURNTYPE_DONE);
this.addChild(this.m_ebTextInput);
setReturnType 默认为换行功能,那怎么设置输入完成键的功能? 求大神请教