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
  • 314,917
  • 42
  • 532
  • 579
Vikram Pote
  • 5,433
  • 4
  • 33
  • 37

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,283
  • 15
  • 33