Everyone wants to move the UITableView when the keyboard pops up, but I\'m looking for a way to disable the automatic animation to the cursor when the keyboard pops up. I\'m
The automatic scrolling code resides in tableViewController, so auto-scrolling can't be disabled. Instead of subclassing from UITableViewController you can subclass from UIViewController and use a tableView inside it. If you are willing to use UITableViewController itself, you can override viewWillAppear and don't call [super viewWillAppear].