My program has a UIToolBar which contains a UITextField and a UIButton. The whole view (self.view) goes when the soft keypad comes up. As the UIToolBar is moved to a new position, the button sometimes doesn't capture events properly. Several clicks on the button is required to fire a single event.
The following set of code is executed when the keyboard comes up
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.25];
self.view.frame = CGRectMake(0,-220,320,400);
tableView.frame = CGRectMake(10, 220, 320, 264);
[UIView commitAnimations];