all.
I'm trying to catch the keyboard split event on iPad, iOS5. I've registered method for all keyboard notifications and that's what notification I get when I split the keyboard (in the order of appearance):
UIKeyboardWillHideNotification UIKeyboardWillChangeFrameNotification UIKeyboardDidHideNotification UIKeyboardDidChangeFrameNotification UIKeyboardDidChangeFrameNotification
So, no WillShow or DidShow notification, but the keyboard is still on the screen.
The two consequent UIKeyboardDidChangeFrameNotification would have helped (I could have contained positions of the both parts of the keyboard), but, alas, UIKeyboardFrameEndUserInfoKey key contains the same value (origin (352; 0), size (316; 1024)) for both notifications.
So the question is: how to catch the split keyboard event in iPad, iOS5?