How to get UIKeyboard size with iOS
You can get the keyboard size from the userInfo dictionary using the UIKeyboardFrameBeginUserInfoKey and the UIKeyboardFrameEndUserInfoKey instead. These two keys return a NSValue instance containing a CGRect that holds the position and size of the keyboard at both the start and end points of the keyboard’s show/hide animation. Edit: To clarify, the userInfo dictionary comes … Read more