0

I am using UITableViewController and in that i have some cells with textfields and in last cell i have UITextView.

I want to move the position of last cell which contain textview on keyboard appear but i am not able to do this. Is there any solution for this problem?

rmaddy
  • 298,130
  • 40
  • 468
  • 517
Vikram Pote
  • 4,959
  • 4
  • 31
  • 34

1 Answers1

1

Try TPKeyboardAvoiding.

For use with UITableViewController classes, drop TPKeyboardAvoidingTableView.m and TPKeyboardAvoidingTableView.h into your project, and make your UITableView a TPKeyboardAvoidingTableView in the xib. If you're not using a xib with your controller, I know of no easy way to make its UITableView a custom class: The path of least resistance is to create a xib for it.

Hope this helps.

Community
  • 1
  • 1
Stefan
  • 1,153
  • 14
  • 30