//设置键盘移动位置 一般用于适配

来源:互联网 发布:淘宝返利链接怎么做 编辑:程序博客网 时间:2024/06/07 01:38


-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField {

//这个offSet根据个人需求改动

    CGFloat offset = self.view.frame.size.height - (textField.frame.origin.y + textField.frame.size.height +216);

    if (offset <= 0) {

        [UIView animateWithDuration:0.3 animations:^{

            CGRect frame = self.view.frame;

            frame.origin.y = offset;

            self.view.frame = frame;

        }];

    }

    

    return YES;

}

- (BOOL)textFieldShouldEndEditing:(UITextField *)textField {

    

    [UIView animateWithDuration:0.3 animations:^{

        CGRect frame = self.view.frame;

        frame.origin.y = 0.0;

        self.view.frame = frame;

    }];

    return YES;

}



1 0
原创粉丝点击