I have created a view controller.
Setup a tableview that has a bunch of custom cells that contain text labels. When the keyboard comes up the frame of the tableview is not resizing automatically. Is there a checkbox in interface builder that I’m missing or something?
What settings should I check?
If you are using
UIViewController, you must write resizing code when keyboard appears. You can handleUIKeyboardWillShowNotification, UIKeyboardDidShowNotification, UIKeyboardWillHideNotification, UIKeyboardDidHideNotificationfor resizing the tableview appropriately.