ios 解决键盘挡住UITextField的问题

在IOS开发中,如果输入框的位置偏下,那么当键盘弹出时,键盘有可能被挡住

在网上看了很多种方法怎么实现,终于发现一种最为简单的方法


1.在当前Controller中实现UITextField的Delegate

@interface ItemDetailViewController()<UITextFieldDelegate>

2.为有可能被遮住的UITextField 设置Delegate 和Tag

    [textField3 setDelegate:self];
    [textField3 setTag:3];

3.实现UITextFieldDelegate中得协议方法

- (void)textFieldDidBeginEditing:(UITextField *)textField{   //开始编辑时,整体上移
    if (textField.tag==3) {
        [self moveView:-240];//自己需要计算偏移值
    }
    
}
- (void)textFieldDidEndEditing:(UITextField *)textField{     //结束编辑时,整体下移
    if (textField.tag==3)
    {
        [self moveView:240];
    }
}

4.实现方法moveView

-(void)moveView:(float)move{
    NSTimeInterval animationDuration = 0.30f;
    CGRect frame = self.view.frame;
    frame.origin.y +=move;//view的y轴上移
    self.view.frame = frame;
    [UIView beginAnimations:@"ResizeView" context:nil];
    [UIView setAnimationDuration:animationDuration];
    self.view.frame = frame;
    [UIView commitAnimations];//设置调整界面的动画效果
}

以上就解决了键盘挡住输入框的问题,但是如果界面上有ScrollView,当键盘弹出时,scrollview没办法滑动到界面的顶部

有更完美的解决方法吗,持续研究中

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值