博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
键盘的出现于隐藏(解决键盘弹出时会覆盖文本框的问题,代码实现)
阅读量:5227 次
发布时间:2019-06-14

本文共 2511 字,大约阅读时间需要 8 分钟。

键盘的出现于隐藏(解决键盘弹出时会覆盖文本框的问题,代码实现)

 

#import "ViewController.h"

#import "UIView+FrameExtension.h" // 可以自己写,以后用着方便

#define kDeviceHeight [UIScreen mainScreen].bounds.size.height

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    

    // 设置视图的背景色

    self.view.backgroundColor = [UIColor lightGrayColor];

    

    // 添加第一个文本框 假定位置

    UITextField *firstField = [[UITextField alloc]initWithFrame:CGRectMake(50, 300, 200, 40)];

    firstField.backgroundColor = [UIColor whiteColor];

    [self.view addSubview:firstField];

    

    // 添加第一个文本框

    UITextField *secondField = [[UITextField alloc]initWithFrame:CGRectMake(firstField.x, firstField.bottom + 50, firstField.width , firstField.height)];

    [self.view addSubview:secondField];

    secondField.backgroundColor = [UIColor whiteColor];

    

    // 注册键盘显示的通知

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

    // 注册键盘隐藏的通知

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

}

 

// 键盘弹出时执行这个方法,

-(void)showKeyboard:(NSNotification *)notification{

    

    // 定义一个文本框,指向正在编辑的文本框,也就是弹出键盘的文本框

    UITextField *txtField;

    // 今次遍历当前视图的所有子视图, subViews数组保存的是当前视图所有的子视图

    for (UIView *subView in self.view.subviews) {

        // 如果这个子视图是一个文本框的话,isKindOfClass方法可以判断某个变量是不是某个类型的变量

        if ([subView isKindOfClass:[UITextField class]]) {

            // 先把这个子视图转化为文本框

            UITextField *tempField = (UITextField *)subView;

            // 再判断这个文本框是不是正在编辑

            if (tempField.isEditing ) {

                // 如果这个文本框正在编辑,就是我要找的文本框,中断循环

                txtField = tempField;

                break;

            }

        }

    }

    

    NSLog(@"%@", notification);

    // 获取通知的userInfo属性

    NSDictionary *userInfoDict = notification.userInfo;

    // 通过键盘通知的userInfo属性获取键盘的bounds

    NSValue *value = [userInfoDict objectForKey:UIKeyboardBoundsUserInfoKey];

    // 键盘的大小

    CGSize keyboardSize = [value CGRectValue].size;

    // 键盘高度

    CGFloat keyboardHeight = keyboardSize.height;

    

    CGFloat offset = kDeviceHeight - keyboardHeight - txtField.bottom ;

    

    if (offset < 0 ) {      //这种情况下需要上移

        offset = offset - 10 ;     //保存上移的高度

        

        [UIView animateWithDuration:0.5 animations:^{

            

            self.view.transform = CGAffineTransformMakeTranslation(0, offset );

        }];

    }

    

}

 

-(void)hideKeyboard:(NSNotification *)notification{

    

    [UIView animateWithDuration:2 animations:^{

        

        self.view.transform = CGAffineTransformIdentity;

    }];

    

}

   // 点击屏幕空白时隐藏键盘

-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{

    [self.view endEditing:YES];

}

@end

 

 源文件可以在这里下载,希望可以帮到你:

转载于:https://www.cnblogs.com/ljcgood66/p/5366438.html

你可能感兴趣的文章
ServletContext 与application的异同
查看>>
水平垂直居中
查看>>
CSS3教程:border-image属性
查看>>
asp.netmvc常见功能链接
查看>>
sql server系统表详细说明
查看>>
SQL Server 2008连接字符串写法大全
查看>>
sql server 使用链接服务器远程查询
查看>>
JavaScript中的继承
查看>>
MySQL简介
查看>>
设计模式之桥接模式(Bridge)
查看>>
转:探讨跨域请求资源的几种方式
查看>>
jquery的$(document).ready()和onload的加载顺序
查看>>
Python Web框架Django (五)
查看>>
.net学习之继承、里氏替换原则LSP、虚方法、多态、抽象类、Equals方法、接口、装箱拆箱、字符串------(转)...
查看>>
Android 开发 ThreadPool(线程池) 总结
查看>>
【poj1568】 Find the Winning Move
查看>>
【codevs1033】 蚯蚓的游戏问题
查看>>
TP框架中的page分页实现
查看>>
[转]跨越千年的RSA算法
查看>>
传奇学者应明生
查看>>