This is a very newbie. I have a UIToolBar at the bottom, which should be animatedly moving up and down using the keyboard when the UIKeyBoard is displayed. I got this working with UIKeyBoard Notifications. The view we are talking about has a permitted section view. When the orientation of the device is landscape, both column views are displayed [hope it makes sense].
When the keyboard is displayed, I do it
CGSize keyBoardSize = [[notificationInfo objectForKey:UIKeyboardFrameEndUserInfoKey]CGRectValue].size;
CGRect toolbarFrame= [BottomToolBar frame];
toolbarFrame.origin.y -= keyBoardSize.height;
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.3];
BottomToolBar .frame = viewFrame;
[UIView commitAnimations];
when the keyboard is welcome, I do it
toolbarFrame.origin.y += keyBoardSize.height;
, , , . , . , . - ? , , ?