4

仮想キーボードの下にある textFiewl がタップされたときに、scrollView を上にスクロールする必要があります。私は電話します[self.scrollView setContentOffset:scrollPoint animated:YES];。画面の表示領域を取得するには、明らかに KB サイズが必要です。

私はよく知っています

NSDictionary *info = [notification userInfo];

CGSize kbSize = [self.view convertRect:
                 [info[UIKeyboardFrameBeginUserInfoKey] CGRectValue]
                              fromView:nil].size;

ただし、ユーザーが半分隠れている可能性のあるテキストフィールドをタップすると、キーボード通知が届かないため、うまくいきません。

そのため、キーボードがメッセージを送信する前に呼び出されるのメソッドを呼び出すtextFieldDidBeginEditing:ため、最初のタップで KB サイズがわかりません。

問題は、対応する通知を呼び出さずに KB サイズを取得することは可能ですか? ハードコーディングではなく、プログラムで。

4

1 に答える 1

3

それは間違っている。

また、キーボードの表示/非表示の通知をリッスンしてから、画面を調整する必要があります。

サンプルのスケルトン コードを次に示します。

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
    [nc addObserver:self selector:@selector(keyboardChangedStatus:) name:UIKeyboardWillShowNotification object:nil];
    [nc addObserver:self selector:@selector(keyboardChangedStatus:) name:UIKeyboardWillHideNotification object:nil];
}

- (void)viewWillDisappear:(BOOL)animated {
    [super viewWillDisappear:animated];

    NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
    [nc removeObserver:self name:UIKeyboardWillShowNotification object:nil];
    [nc removeObserver:self name:UIKeyboardWillHideNotification object:nil];
}

#pragma mark - Get Keyboard size

- (void)keyboardChangedStatus:(NSNotification*)notification {
    //get the size!
    CGRect keyboardRect;
    [[[notification userInfo] objectForKey:UIKeyboardFrameEndUserInfoKey] getValue:&keyboardRect];
    keyboardHeight = keyboardRect.size.height;
    //move your view to the top, to display the textfield..
    [self moveView:notification keyboardHeight:keyboardHeight];
}

#pragma mark View Moving

- (void)moveView:(NSNotification *) notification keyboardHeight:(int)height{
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.3];
    [UIView setAnimationBeginsFromCurrentState:YES];

    CGRect rect = self.view.frame;

    if ([[notification name] isEqual:UIKeyboardWillHideNotification]) {
        // revert back to the normal state.
        rect.origin.y = 0;
        hasScrolledToTop = YES;
    } 
    else {
        // 1. move the view's origin up so that the text field that will be hidden come above the keyboard (you need to adjust the value here)
        rect.origin.y = -height;
    }

    self.view.frame = rect;

    [UIView commitAnimations];
}
于 2013-03-26T21:37:39.360 に答える