如何保持iOS上键盘出现时输入框不被覆盖

在 iOS5 上请求显示键盘时,系统从屏幕底部将键盘滑入上来,位于应用的内容之上。

(墙内:http://mikixiyou.iteye.com/blog/1488302)

如果屏幕中的内容项目比较多,它就可能覆盖住文本输入框之类的对象。你必须调整你的内容,使得输入框保持可见。

你会想到哪些处理方法呢?

第一种,

临时调整窗口中各个视图的大小,使得键盘从下向上占领的区域空白。键盘的高度( keyboard.size.height )是一定的,将视图中所有内容所在区域的 y 值减小到 y-keyboard.size.height 。

该方法有个局限,如果所有内容之和大于窗口减去键盘高度的话,该方法将不能用。

第二种,

将窗口中所有视图嵌入进一个滚动视图对象( UIScrollView )中。在键盘出现时,你将输入框滚动到合适的位置,调整一下滚动视图的内容区域。

这些操作通过一个通知 UIKeyboardDidShowNotification去实现的,逻辑过程如下:

1 、根据通知的字典信息 userInfo 得到键盘的 size 。

2 、根据键盘的 size 中的 height 值,调整滚动视图内容底部的 inset 。

3 、滚动目标视图即文件输入框进入视图中。

简要的代码如下:

1 、实现两个委托方法,用于指定输入框对象。


- (void)textFieldDidBeginEditing:(UITextField *)textField


{


activeField = textField;


}

 

- (void)textFieldDidEndEditing:(UITextField *)textField


{


activeField = nil;


}

2 、注册通知的观察者


- (void)registerForKeyboardNotifications


{


[[NSNotificationCenter defaultCenter] addObserver:self


selector:@selector(keyboardWasShown:)


name:UIKeyboardDidShowNotification object:nil];

 

[[NSNotificationCenter defaultCenter] addObserver:self


selector:@selector(keyboardWillBeHidden:)


name:UIKeyboardWillHideNotification object:nil];

 

}

将这个方法放在 viewDidAppear 中调用。

同时也要写一个 removeObserver 放在 viewWillDisappear 中调用。

3 、实现键盘显示通知的 selector 中的方法


// Called when the UIKeyboardDidShowNotification is sent.


- (void)keyboardWasShown:(NSNotification*)aNotification


{


NSDictionary* info = [aNotification userInfo];


CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;

 

UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, kbSize.height, 0.0);


scrollView.contentInset = contentInsets;


scrollView.scrollIndicatorInsets = contentInsets;

 

// If active text field is hidden by keyboard, scroll it so it‘s visible


// Your application might not need or want this behavior.


CGRect aRect = self.view.frame;


aRect.size.height -= kbSize.height;


if (!CGRectContainsPoint(aRect, activeField.frame.origin) ) {


CGPoint scrollPoint = CGPointMake(0.0, activeField.frame.origin.y-kbSize.height);


[scrollView setContentOffset:scrollPoint animated:YES];


}


}

4 、实现键盘消失通知的方法


// Called when the UIKeyboardWillHideNotification is sent


- (void)keyboardWillBeHidden:(NSNotification*)aNotification


{


UIEdgeInsets contentInsets = UIEdgeInsetsZero;


scrollView.contentInset = contentInsets;


scrollView.scrollIndicatorInsets = contentInsets;


}

这个方法调整内容底部的 inset 的值使得输入框不被键盘区域屏蔽的。还可以换种方法实现。

第三种,

扩展内容视图的高度,滚动文本输入框对象进内容视图。

将 keyboardWasShown: 重写。


- (void)keyboardWasShown:(NSNotification*)aNotification {


NSDictionary* info = [aNotification userInfo];


CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;


CGRect bkgndRect = activeField.superview.frame;


bkgndRect.size.height += kbSize.height;


[activeField.superview setFrame:bkgndRect];


[scrollView setContentOffset:CGPointMake(0.0, activeField.frame.origin.y-kbSize.height) animated:YES];


}

如何保持iOS上键盘出现时输入框不被覆盖

时间: 2024-10-06 23:34:37

如何保持iOS上键盘出现时输入框不被覆盖的相关文章

保持iOS上键盘出现时输入框不被覆盖

如果屏幕中的内容项目比较多,键盘就可能覆盖住文本输入框之类的对象.你必须调整你的内容,使得输入框保持可见. 你会想到哪些处理方法呢? 第一种, 临时调整窗口中各个视图的大小,使得键盘从下向上占领的区域空白.键盘的高度( keyboard.size.height )是一定的,将视图中所有内容所在区域的 y 值减小到 y-keyboard.size.height . 该方法有个局限,如果所有内容之和大于窗口减去键盘高度的话,该方法将不能用. 第二种, 将窗口中所有视图嵌入进一个滚动视图对象( UIS

手机端上点击input框软键盘出现时把input框不被覆盖,显示在屏幕中间

1  用定位为题来解决var oHeight = $(document).height(); //浏览器当前的高度      $(window).resize(function(){ if($(document).height() < oHeight){                 $("#footer").css("position","static");    }else{                 $("#foot

ios-利用键盘通知处理键盘出现时遮挡控件问题

-(void)viewDidLoad { NSNotificationCenter *center = [NSNotificationCenter defaultCenter]; //注册键盘显示通知 [center addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil]; //注册键盘隐藏通知 [center addObserver:self s

ios 避免navigationcontroller出现时scrollview内容被resize

viewDidLoad中设置以下属性 self.automaticallyAdjustsScrollViewInsets = NO;

phoneGap在iOS上的简单使用:弹出对话框和调用相机

弹出对话框 在phoneGap中使用navigator.notification.confirm()可以在iOS上弹出原生对话框,并且得到对应按钮的点击索引,方法原型如下: navigator.notification.confirm( msg, //要显示的信息 backFn, //警告被忽略的回调函数 title, //标题 btns||'取消,确定' //按钮名称 ) 当前项目中做了如下封装: showConfirm:function(msg,title,backFn,btns){ nav

iOS UIWebView键盘处理

让UIWebView弹出键盘上的按钮显示中文    http://www.cr173.com/html/19440_1.html 如果你有下面的问题,此文也许会帮到你. 键盘遮盖了UIWebView. 如何拖动UIWebView来移除键盘. 键盘出现时UIWebView里面的Content内容向上移动,以至聚焦的文本框超出了UIWebView的可视区域. 如何在键盘弹出时禁止UIWebView里面的Content向上移动. 无法在UIWebView中获取到坐标,来计算contentOffset得

iOS 监听键盘高度,输入框上升

1 //设置输入框 ---<因为输入框用了get方法,所以第一次调用输入框要用self 调用>: 2 self.textlab.frame=CGRectMake(20, 420, 250, 30); 3 _textlab.layer.borderColor=[UIColor blueColor].CGColor; 4 _textlab.layer.borderWidth= 0.5f; 5 _textlab.backgroundColor=[UIColor colorWithRed:0.830

IOS 关闭键盘 退出键盘 的5种方式(转)

IOS 关闭键盘 退出键盘 的5种方式 转自“http://blog.csdn.net/w88193363/article/details/24423635” 分类: iphone2014-04-24 17:03 2197人阅读 评论(0) 收藏 举报 1.点击编辑区以外的地方(UIView) 2.点击编辑区域以外的地方(UIControl) 3.使用制作收起键盘的按钮 4.使用判断输入字元 5.关于键盘遮蔽的问题 1,点击编辑区以外的地方(UIView) 这是一种很直觉的方法,当不再需要使用虚

iOS关闭键盘的两种简单方法

方法一: //1, 关闭键盘 [[[UIApplication sharedApplication] keyWindow] endEditing:YES]; 方法二: //2, 关闭键盘 [[self findFirstResponderBeneathView:self] resignFirstResponder]; - (UIView*)findFirstResponderBeneathView:(UIView*)view { // Search recursively for first r