How to get keyboard size for resizing UITextView and how to use UIKeyboardFrameEndUserInfoKey with UIKeyboardFrameEndUserInfoKey keyboard? The following code for resizing UITextView works great on a standard keyboard. But does not work with the Japanese. How to fix it?
- (void)keyboardWillShow:(NSNotification *)aNotification { [self moveTextViewForKeyboard:aNotification up:YES]; } - (void)keyboardWillHide:(NSNotification *)aNotification { [self moveTextViewForKeyboard:aNotification up:NO]; } - (void) moveTextViewForKeyboard:(NSNotification*)aNotification up: (BOOL) up { NSDictionary* userInfo = [aNotification userInfo];
Many thanks for the help!
source share