EditBox in CocosStudio

Hi!, I already have an app created with Cocos2d-x for iOS, the problem is that I used TextField instead EditBox and is not confortable for the user experience.
I can add manually the EditBox with xcode, but I can’t see in CocosStudio the icon to add an EditBox.
Do you know if there is a way to add an EditBox using CocosStudio?

Thanks!

If using Lua language to write the app, there is a solution.
In Cocos Studio, add a custom control with Lua (and maybe some C# code). export data to lua(In project Settings, set the “Data Format” to “Lua File”.).
In the Lua custom control, create an EditBox.
you can find a manual to write the Lua custom control in widget extension
Currently, you can’t add a new control to Cocos Studio without lua.