ios 含有textfield的viewcontroller随键盘弹起而改变位置

Posted old_k

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios 含有textfield的viewcontroller随键盘弹起而改变位置相关的知识,希望对你有一定的参考价值。

首先实现 设置代理,self.textfield.delegate = self;

具体实现代码:
-(void)textFieldDidBeginEditing:(UITextField *)textField{
    NSTimeInterval animationDuration = 0.30f;
    [UIView beginAnimations:@"ResizeForKeyboard" context:nil];
    [UIView setAnimationDuration:animationDuration];
    if ([UIScreen mainScreen].bounds.size.width>320) {
        //将视图的Y坐标向上移动,以使下面腾出地方用于软键盘的显示
        self.view.frame = CGRectMake(0.0f, -200.0f, self.view.frame.size.width, self.view.frame.size.height);//64-216
        [UIView commitAnimations];
    }
    else{
        self.view.frame = CGRectMake(0.0f, -170.0f, self.view.frame.size.width, self.view.frame.size.height);
        [UIView commitAnimations];
    }
}

-(void)textFieldDidEndEditing:(UITextField *)textField{
    //滑动效果
    NSTimeInterval animationDuration = 0.30f;
    [UIView beginAnimations:@"ResizeForKeyboard" context:nil];
    [UIView setAnimationDuration:animationDuration];
    
    //恢复屏幕
    self.view.frame = CGRectMake(0.0f, 0.0f, self.view.frame.size.width, self.view.frame.size.height);//64-216
    
    [UIView commitAnimations];
}

  

以上是关于ios 含有textfield的viewcontroller随键盘弹起而改变位置的主要内容,如果未能解决你的问题,请参考以下文章

iOS 开开中textfield的一些记录

IOS TextField伴随键盘移动

iOS 监听textfield的输入(转)

iOS 设置textfield的最大文本长度

iOS-TextField知多少

为啥 TextField 不关注更新? (iOS 15)