0

我有一个像你在这里看到的景色。 在此处输入图像描述

你可以看到我有一个标题图片,下面有很多文本字段。只有 UITextfields Adres - 邮政编码 - Gemeente - Tel.nr - 电子邮件 - BTWnr。消失在键盘后面。我有一些代码,适用于 Adres 的 UITextfield。但是当我想实现更多时,它总是需要 Adres 的 UITextfield 的动画。

这是我在代码中的内容

#define kOFFSET_FOR_KEYBOARD 80.0
#define kOFFSET_FOR_KEYBOARD2 120.0
-(void)keyboardWillShow {

    NSLog(@"Keyboard frame now is %f",self.keyboardView.frame.origin.y);
    // Animate the current view out of the way
    if (self.keyboardView.frame.origin.y >= 198)
    {
        NSLog(@"keyboardWillShow 1");
        [self setViewMovedUp2:NO];
    }
    else if (self.keyboardView.frame.origin.y < 198)
    {
         NSLog(@"keyboardWillShow 2");
        [self setViewMovedUp:YES];
    }
}

-(void)keyboardWillHide {

    NSLog(@"Keyboard frame  ATM %f",self.keyboardView.frame.origin.y);
    if (self.keyboardView.frame.origin.y >= 198)
    {
        NSLog(@"keyboardWillHide 1");
        [self setViewMovedUp:YES];
    }
    else if (self.keyboardView.frame.origin.y < 198)
    {
        NSLog(@"keyboardWillHide 2");
        [self setViewMovedUp:NO];
    }
}

-(void)textFieldDidBeginEditing:(UITextField *)sender
{

    if ([sender isEqual:txtAdres])
    {
        NSLog(@"sender is adres");
        //move the main view, so that the keyboard does not hide it.
        if  (self.keyboardView.frame.origin.y >= 198)
        {
            [self setViewMovedUp:YES];
        }
    }
    if ([sender isEqual:txtPostcode])
    {
        NSLog(@"sender is postcode");
        //move the main view, so that the keyboard does not hide it.
        if  (self.keyboardView.frame.origin.y >= 198)
        {
            [self setViewMovedUp2:YES];
        }
    }
}

//method to move the view up/down whenever the keyboard is shown/dismissed
-(void)setViewMovedUp:(BOOL)movedUp
{

    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.3]; // if you want to slide up the view

    CGRect rect = self.keyboardView.frame;
    if (movedUp)
    {
        // 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.
        rect.origin.y -= kOFFSET_FOR_KEYBOARD;
        rect.size.height += kOFFSET_FOR_KEYBOARD;
    }
    else
    {
        // revert back to the normal state.
        rect.origin.y += kOFFSET_FOR_KEYBOARD;
        rect.size.height -= kOFFSET_FOR_KEYBOARD;
    }
    self.keyboardView.frame = rect;

    [UIView commitAnimations];
}
-(void)setViewMovedUp2:(BOOL)movedUp
{
    NSLog(@"setViewMovedUp2 called");
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.3]; // if you want to slide up the view

    CGRect rect = self.keyboardView.frame;
    if (movedUp)
    {
        // 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.
        rect.origin.y -= kOFFSET_FOR_KEYBOARD2;
        rect.size.height += kOFFSET_FOR_KEYBOARD2;
    }
    else
    {
        // revert back to the normal state.
        rect.origin.y += kOFFSET_FOR_KEYBOARD2;
        rect.size.height -= kOFFSET_FOR_KEYBOARD2;
    }
    self.keyboardView.frame = rect;

    [UIView commitAnimations];
}

在我的 ViewWillAppear 我这样做

  [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillShow)
                                                 name:UIKeyboardWillShowNotification
                                               object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillHide)
                                                 name:UIKeyboardWillHideNotification
                                               object:nil];

有人可以帮我吗?

4

3 回答 3

1

请尝试使用这个...我希望它可以帮助你。你可以在你想要你的文本字段的这一行中把你的价值放在 200 上。

 CGFloat avaliableHeight = applicationFrame.size.height - 200;


- (void)scrollViewToCenterOfScreen:(UIView *)theView
{
    CGFloat viewCenterY = theView.center.y;
    CGRect applicationFrame = [[UIScreen mainScreen] applicationFrame];
    CGFloat avaliableHeight = applicationFrame.size.height - 200;

    CGFloat y = viewCenterY - avaliableHeight / 2.0f;

    if (y < 0)
    {
        y = 0;
    }

    [scrollView setContentOffset:CGPointMake(0, y) animated:YES];
}


-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
    [self scrollViewToCenterOfScreen:textField];
    return YES;

}
于 2013-05-08T12:22:13.977 回答
0

我建议,使用 dropin 替换库TPKeyboardAvoiding来处理移动视图的所有工作,当显示键盘时,这是一种非常简单的实现方法

于 2013-05-08T12:33:31.003 回答
0

我昨天真的遇到了这个问题。这是我的代码:

#define kOFFSET_FOR_KEYBOARD 80.0
//This decides how many pixels to move the view

 -(void)keyboardWillShow
{
    // Animate the current view out of the way
    if (self.view.frame.origin.y >= 0)
    {
        [self setViewMovedUp:YES];
    }
    else if (self.view.frame.origin.y < 0)
    {
        [self setViewMovedUp:NO];
    }
}

-(void)keyboardWillHide
{
    if (self.view.frame.origin.y >= 0)
    {
        [self setViewMovedUp:YES];
    }
    else if (self.view.frame.origin.y < 0)
    {
        [self setViewMovedUp:NO];
    }
}

-(void)textFieldDidBeginEditing:(UITextField *)sender
{
    if ([sender isEqual:doNotCover])
    {
        //move the main view, so that the keyboard does not hide it.
        if  (self.view.frame.origin.y >= 0)
        {
            [self setViewMovedUp:YES];
        }
    }
}

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

    CGRect rect = self.view.frame;
    if (movedUp)
    {
        // 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.
        rect.origin.y -= kOFFSET_FOR_KEYBOARD;
        rect.size.height += kOFFSET_FOR_KEYBOARD;
    }
    else
    {
        // revert back to the normal state.
        rect.origin.y += kOFFSET_FOR_KEYBOARD;
        rect.size.height -= kOFFSET_FOR_KEYBOARD;
    }
    self.view.frame = rect;

    [UIView commitAnimations];
}


-(void)setViewMovedUp:(BOOL)movedUp
{
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.3]; // if you want to slide up the view

    CGRect rect = self.view.frame;

    if (movedUp)
    {
        // 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.
        rect.origin.y -= kOFFSET_FOR_KEYBOARD;
        rect.size.height += kOFFSET_FOR_KEYBOARD;
    }
    else
    {
        // revert back to the normal state.
        rect.origin.y += kOFFSET_FOR_KEYBOARD;
        rect.size.height -= kOFFSET_FOR_KEYBOARD;
    }
    }
    self.view.frame = rect;

    [UIView commitAnimations];


- (void)viewWillAppear:(BOOL)animated
{
    // register for keyboard notifications
    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillShow)
                                                 name:UIKeyboardWillShowNotification
                                               object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self
                                             selector:@selector(keyboardWillHide)
                                                 name:UIKeyboardWillHideNotification
                                               object:nil];
}

- (void)viewWillDisappear:(BOOL)animated
{
    // unregister for keyboard notifications while not visible.
    [[NSNotificationCenter defaultCenter] removeObserver:self
                                                    name:UIKeyboardWillShowNotification
                                                  object:nil];

    [[NSNotificationCenter defaultCenter] removeObserver:self
                                                    name:UIKeyboardWillHideNotification
                                                  object:nil];
}
于 2013-10-15T22:45:55.213 回答