Check the app name and solution name, then click Create.
Step 3
Now, open Storyboard in your interface builder by right clicking on Main.Storyboard >> In the context menu select Open with >> followed by XCode Interface Builder (because my favorite designer is XCode). After this, drag Horizontal Stack View from the Toolbox and place the Storyboard as per your requirement and set a perfect constraint to this view. Next, drag TextField from the Toolbox and place it inside the StackView and set the height and width of TextField. Create an outlet for this TextField to access from the code-behind.
Here, I set field names as fieldOne, fieldTwo, fieldThree, fieldFour.
Step 4
Next, open ViewController.cs file by going >> Solution Explorer >> double click ViewController.cs file. Implement the ViewController class in IUITextFieldDelegate interface and override the ShouldChangeCharacters method. Here, I did simple logic to change the focus of one field to another field. In case you need to validate input in runtime, you can write your validation code before the ResignResponder method.
Step 5
Let's run your application. You will get output like below.
The full source code is
here.
Summary
- We created StackView
- StackView was placed inside TextField
- We created an outlet for Textfield
- We implemented IUXTextFieldDelegate to your View Controller and wrote some logic.