[已解决]cc.EditBox.create 文本框位置变化

this._box1 = cc.EditBox.create(cc.size(180, 40), cc.Scale9Sprite.create(“res/image/yellow_edit.png”));
this._box1.setPlaceholderFontColor(cc.c3b(117, 76, 36));
this._box1.setPlaceHolder(“点击输入姓名”);
this._box1.setPosition(240, 185);
this._box1.setDelegate(this);
this._box1.setFontColor(cc.c3b(5, 4, 10));
this._box1.setMaxLength(10);
this.addChild(this._box1);

见附近图片

文本框位置 与 输入焦点位置变化 在Iphone上

2dx js 3.0 RC3解决了这个问题了