как спрятать клавиатуру iPhone после прокрутки - PullRequest
0 голосов
/ 01 декабря 2009
-(void)viewWillAppear:(BOOL)animated
{
    [[NSNotificationCenter defaultCenter] addObserver:self  selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification  object:self.view.window];
    [super viewWillAppear:animated];
}

-(void)viewWillDisappear:(BOOL)animated
{
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];
    [super viewWillDisappear:animated];
}

-(void)keyboardWillShow:(NSNotification *)notif
{
    NSDictionary*info=[notif userInfo];
    NSValue* aValue= [info objectForKey:UIKeyboardBoundsUserInfoKey];
    CGSize keyboardSize=[aValue CGRectValue].size;
    float bottomPoint= (text1.frame.origin.y+text1.frame.size.height+5);
    //float bottomPoint= (text2.frame.origin.y+text2.frame.size.height+5);
    //float bottomPoint= (text3.frame.origin.y+text3.frame.size.height+5);
    scrollAmount=keyboardSize.height - (self.view.frame.size.height - bottomPoint);
    if(scrollAmount > 0)
    {
        moveViewUp = YES;
        [self scrollTheView:YES];
    }
    else
        moveViewUp = NO;
    }
}

-(void)scrollTheView:(BOOL) movedUp
{
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:0.3];
    CGRect rect = self.view.frame;
    if(movedUp)
    { 
        rect.origin.y -= scrollAmount;
    }
    else 
    {
        rect.origin.y += scrollAmount;
    }
    self.view.frame = rect;
    [UIView commitAnimations];
}

-(BOOL)text1ShouldReturn:(UITextField  *)theTextField
{
    [theTextField resignFirstResponder];
    if(moveViewUp)
        [self scrollTheView:NO];
    return YES;
}

Я написал этот код для прокрутки просмотра, но он не возвращается после исчезновения клавиатуры.

1 Ответ

1 голос
/ 01 декабря 2009

Вы не подписались на UIKeyboardWillHideNotifcation, только Показать - таким образом, он ничего не будет делать, когда клавиатура скрывается.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...