I am having a problem that just started happening in OS 3.1.
I have a UITextField in a custom UITableViewCell. In didRotateFromInterfaceOrientation, I call reloadData to reload the tableview to resize the cells. The problem that is happening is: If you are editing text in that UITextField and have the keyboard up, then rotate the phone, the keyboard rotates but becomes non-functional. And then, if you rotate back, you get two keyboards one above the other. I've identified that it is the combination of rotating the phone and the call to 'reloadData' that causes the keyboard to stop functioning.
This happens in the simulator as well as on the phone. And it only happens in OS3.1. I tried compiling in OS3.0 and the problem doesn't happen.
Any ideas? Thanks.
-(void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
[self.tableView reloadData];
}