2

よく知られている whatsapp の例を示します。テキスト内をタッチすると、キーボードがポップアップするので、そのバーをすべて上に移動またはシフトし、ビューのサイズを半分に変更する必要があります。 m 入力と送信ボタン

フェーズ 1: http://www.appbank.net/wp-content/uploads/2010/10/WhatsAppMessenger-18.jpg

フェーズ 2: http://www.onetooneglobal.com/wp-content/uploads/2011/02/onetoone_whatsapp_2.png

これを達成するための最良の方法は何ですか?

4

2 に答える 2

6


#define kOFFSET_FOR_KEYBOARD 280.0

- (void)keyboardWillHide:(NSNotification *)notif {
    [self setViewMoveUp:NO];
}


- (void)keyboardWillShow:(NSNotification *)notif{
    [self setViewMoveUp:YES];
}


- (void)textFieldDidBeginEditing:(UITextField *)textField {
    stayup = YES;
    [self setViewMoveUp:YES];
}


- (void)textFieldDidEndEditing:(UITextField *)textField {
    stayup = NO;
    [self setViewMoveUp:NO];
}

//method to move the view up/down whenever the keyboard is shown/dismissed
-(void)setViewMoveUp:(BOOL)moveUp
{
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.3]; // if you want to slide up the view
    [UIView setAnimationBeginsFromCurrentState:YES];

    CGRect rect = self.view.frame;
    if (moveUp)
    {
        // 1. move the view's origin up so that the text field that will be hidden come above the keyboard 
        // 2. increase the size of the view so that the area behind the keyboard is covered up.

        if (rect.origin.y == 0 ) {
            rect.origin.y -= kOFFSET_FOR_KEYBOARD;
            //rect.size.height += kOFFSET_FOR_KEYBOARD;
        }

    }
    else
    {
        if (stayup == NO) {
            rect.origin.y += kOFFSET_FOR_KEYBOARD;
            //rect.size.height -= kOFFSET_FOR_KEYBOARD;
        }
    }
    self.view.frame = rect; 
    [UIView commitAnimations];
}

この方法を試してください。必要に応じて編集します。

于 2011-03-23T17:20:26.340 に答える
2

UIKeyboardDidShowNotificationUIKeyboardDidHideNotificationをリッスンし、提供したセレクターに対応するメソッドで、通知センターがビューのサイズを自由に変更します (通常は UIView.frame プロパティを変更することにより)。

于 2011-03-23T17:00:56.077 に答える