In iOS 5 iPad supports 3 different keypads(normal, split, move-up). Previously when keypad appears controller will be notified though KeyboardDidShowNotification. Here, if we have any UI elemtns hidden by keypad will set an offset and push the elements upwards(by using scroll view). In iOS 5 we have to handle based on the type of the keypad. How do we know about the keypad type. What we can do for the new keypad-types?.
Thanks, durai.
If you react on
UIKeyboardWillShowNotification
orUIKeyboardWillHideNotification
you should be fine as they are only sent when the keyboard is shown in "normal mode".. if the user pulls it up or splits it, you will recieve aUIKeyboardWillHideNotification
(strange behaviour but apple's only choice to make it backwards compatible with iOS 4 apps)