I am trying to get the UIkeyboard height with the following :
float keyboardHeight;
CGRect keyboardFrame = [[[aNotification userInfo]
objectForKey:UIKeyboardFrameBeginUserInfoKey]
CGRectValue];
keyboardHeight = keyboardFrame.size.height;
but the size it returns is 1024.00 . I wanted to know if this is normal.
What device are you testing on? On the iPad 3, in landscape, the keyboard’s height is 1024 pixels.