i have an application in which i have 2 textfields and a textview.when i click on the first textfield my keyboard popsup and theirs is no problem but when i type in the second textfield my keyboard popsup and covers the textfield .i want that when i click on the second text field, the textfield should move up little bit so that i can type in and i have a textview But i have written code for textview so that when i type in textview it automatically moves.The problem is with textfield.Can anybody help me in solving this problem.Thanks
|
Check out the link below - the solution is written by Micheal Tyson. It addresses UITableView and UIScrollView, can be easily changed and works just as a drop-in component. I'm using it and it works well. A drop-in universal solution for moving text fields out of the way of the keyboard |
|||
|
|
Consider using a UITableViewController. Otherwise implement |
|||||||
|
|
Create two methods like given below , first one is for bringing the view slightly upwards, and second one is to bring the view to its original position back First method:
Second method:
Call these methods on textfieldEditingDidbegin and DidEndonExit |
|||
|
|
|
Add the view to a |
|||
|
|
|
An obvious one that you've probably tried already, but one that took me a whIle to latch onto, is to change from landscape to portrait. |
|||
|
|