博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS键盘弹出、隐藏
阅读量:5080 次
发布时间:2019-06-12

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

IOS键盘

  • UIKeyboardFrameBeginUserInfoKey:动画开始前键盘的size
  • UIKeyboardFrameEndUserInfoKey:动画结束后键盘的size
- (void)registeKeyboardNotification{    [[NSNotificationCenter defaultCenter] addObserver:self                                             selector:@selector(keyboardWasShown:)                                                 name:UIKeyboardDidShowNotification object:nil];        [[NSNotificationCenter defaultCenter] addObserver:self                                             selector:@selector(keyboardWillBeHidden:)                                                 name:UIKeyboardWillHideNotification object:nil];}- (void)unRegisteKeyboardNotification{    [[NSNotificationCenter defaultCenter] removeObserver:self];}- (void)keyboardWasShown:(NSNotification*)aNotification{    NSDictionary* info = [aNotification userInfo];    // 动画结束后键盘的size    CGSize kbSize = [[info objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue].size;           UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, kbSize.height, 0.0);    scrollView.contentInset = contentInsets;    scrollView.scrollIndicatorInsets = contentInsets;        // frame为scrollView要滑动到的位置    CGRect frame;    [scrollView scrollRectToVisible:frame animated:YES];}// Called when the UIKeyboardWillHideNotification is sent- (void)keyboardWillBeHidden:(NSNotification*)aNotification{    UIEdgeInsets contentInsets = UIEdgeInsetsZero;    scrollView.contentInset = contentInsets;    scrollView.scrollIndicatorInsets = contentInsets;}

转载于:https://www.cnblogs.com/java-koma/p/4933138.html

你可能感兴趣的文章
Mobiscroll脚本破解,去除Trial和注册时间限制【转】
查看>>
实验五 Java网络编程及安全
查看>>
32位与64位 兼容编程
查看>>
iframe父子页面通信
查看>>
ambari 大数据安装利器
查看>>
java 上传图片压缩图片
查看>>
magento 自定义订单前缀或订单起始编号
查看>>
ACM_拼接数字
查看>>
计算机基础作业1
查看>>
Ubuntu 深度炼丹环境配置
查看>>
C#中集合ArrayList与Hashtable的使用
查看>>
从一个标准 url 里取出文件的扩展名
查看>>
map基本用法
查看>>
poj-1163 动态规划
查看>>
Golang之interface(多态,类型断言)
查看>>
Redis快速入门
查看>>
BootStrap---2.表格和按钮
查看>>
Linear Algebra lecture 2 note
查看>>
CRC计算模型
查看>>
Ajax之404,200等查询
查看>>