I have set up some text fields and labels to look like a simple form which will have to get some user input. My problem is however that whenever some of the text fields are selected and the keyboard slides out, the text fields are covered making it impossible to see the input. My question is how can I move up the text fields so that they stay in view when selected. Maybe someone who is more experienced can help me on this.
|
A good solution for this which I like to do is listen to when the textfield begins editing with the following delegate function:
and then in this callback you can return it to its original location:
} You will need to declare _yPositionStore as a member variable of CGFloat and have your textFields delegate be set to the view controller that owns it(either using Interface builder and dragging delegate to files owner or setting yourTextField.delegate = self) I hope that helps |
|||
|
|
Do do this you need to follow next 2 steps: |
|||
|
|
You can call delegate methods of UITextfield and customize it according to requirement.
|
|||
|
|