IOS TextFiled与TextView 键盘的收起以及处理键盘遮挡
2019/7/9 23:02:51
本文主要是介绍IOS TextFiled与TextView 键盘的收起以及处理键盘遮挡,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
IOS TextFiled与TextView 键盘的收起以及处理键盘遮挡
在iOS开发中,UITextFiled和UITextView是很常见的两个控件,当我们设置好这两个控件后,点击文字输入区域,系统会自动弹出键盘,但是如何收起键盘、点击哪里收起键盘,以及在iPhone4中键盘弹出后遮挡输入框怎么办呢?
这篇文章将带领大家解决:
1》点击其他空白区域收起键盘
2》点击键盘右下角的键收起键盘
3》处理键盘遮挡问题
一,点击其他空白区域收起键盘
- (void)viewDidLoad { [super viewDidLoad]; [self setUpForDismissKeyboard]; }
#pragma mark - 回收任何空白区域键盘事件 - (void)setUpForDismissKeyboard { NSNotificationCenter *nc = [NSNotificationCenter defaultCenter]; UITapGestureRecognizer *singleTapGR = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapAnywhereToDismissKeyboard:)]; NSOperationQueue *mainQuene =[NSOperationQueue mainQueue]; [nc addObserverForName:UIKeyboardWillShowNotification object:nil queue:mainQuene usingBlock:^(NSNotification *note){ [self.view addGestureRecognizer:singleTapGR]; }]; [nc addObserverForName:UIKeyboardWillHideNotification object:nil queue:mainQuene usingBlock:^(NSNotification *note){ [self.view removeGestureRecognizer:singleTapGR]; }]; } - (void)tapAnywhereToDismissKeyboard:(UIGestureRecognizer *)gestureRecognizer { //此method会将self.view里所有的subview的first responder都resign掉 [self.view endEditing:YES]; }
二,点击键盘右下角的键收起键盘
#pragma mark - TextView 代理方法 -(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text { if ([text isEqualToString:@"\n"]) { [self.workLogTextView resignFirstResponder]; return NO; } return YES; }
注意:需要遵守textView/textFiled的代理。改代码是textView代理方法,若实际用到的是textFiled,只需调用textFiled的该类方法即可。
三,处理键盘遮挡问题
#pragma mark 键盘遮挡 - (BOOL)textViewShouldBeginEditing:(UITextView *)textView { if (self.userInfo.isPhone4) { CGFloat offset_y = 0.f; if (textView.tag == CALL_CONTENT_TEXTFIRLD) { offset_y = 100.f; } CGPoint point = self.BackScrollView.contentOffset; point = CGPointMake(point.x, offset_y); [UIView animateWithDuration:0.25 animations:^{ self.BackScrollView.contentOffset = point; }]; } return YES; } - (BOOL)textViewShouldEndEditing:(UITextView *)textView{ if (self.userInfo.isPhone4) { CGFloat offset_y = 0.f; if (textView.tag == CALL_CONTENT_TEXTFIRLD) { offset_y = 100.f; } CGPoint point = self.BackScrollView.contentOffset; point = CGPointMake(point.x, 0); [UIView animateWithDuration:0.25 animations:^{ self.BackScrollView.contentOffset = point; }]; } return YES; }
注意:需要遵守 UIScrollViewDelegate 和 textView/textFiled的代理。需要该页面的父视图是UIScrollView,才能保证弹出键盘时页面向上移动,收起键盘时页面向下移动。代码中的self.BackScrollView就是对应的父视图,使用时请替换掉。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
这篇关于IOS TextFiled与TextView 键盘的收起以及处理键盘遮挡的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12Axios库资料:新手入门必读教程
- 2024-11-11Axios库项目实战:新手入门教程
- 2024-09-29Axios库教程:初学者必备指南
- 2024-08-29Axios库资料:新手入门指南与基本使用教程
- 2024-03-14system bios shadowed
- 2024-03-14gabios
- 2024-02-07iOS应用提交上架的最新流程
- 2024-02-06打包 iOS 的 IPA 文件
- 2023-12-07uniapp打包iOS应用并通过审核:代码混淆的终极解决方案 ?
- 2023-11-25uniapp IOS从打包到上架流程(详细简单) 原创