我试图在网上找到解决方案,但找不到正确的答案。有谁知道如何“捕捉”/“识别”用户按下软键盘(iOS)上的返回键?以及如何检查输入是否等于正确答案?
非常感谢。
我的代码:
nt = new NativeText(1);
this.nt = nt;
this.nt.returnKeyLabel = ReturnKeyLabel.DONE;
this.nt.autoCorrect = true;
this.nt.fontSize = 40;
this.nt.borderThickness = 1;
this.nt.fontFamily = "Arial";
this.nt.text = "pica";
this.nt.color = 0xFFFFFF;
this.nt.borderColor = 0xFFFFFF;
this.nt.width = 500;
this.nt.x = 70;
this.nt.y = 70;
LEVEL_02_STAGE.addChild(this.nt);