Reputation: 14632
What is a constant like UIKeyboardFrameEndUserInfoKey for additional Japanese keyboard panel in iphone/ipad?
[[userInfo objectForKey:UIKeyboardAnimationCurveUserInfoKey] getValue:&animationCurve];
[[userInfo objectForKey:UIKeyboardAnimationDurationUserInfoKey] getValue:&animationDuration];
[[userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] getValue:&keyboardEndFrame];
Upvotes: 1
Views: 425
Reputation: 14632
The constant is the same - UIKeyboardFrameEndUserInfoKey
. But - (void)keyboardWillShown:(NSNotification*)aNotification
event rises two times.
Upvotes: 1