IOS 点击空白处隐藏键盘的几种方法

第一种: 使用view的touchesBegan:触摸事件来实现对键盘的隐藏,当点击view的区域就会触发这个事件

[html] view plaincopyprint?在CODE上查看代码片派生到我的代码片

  1. -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{  

  2.     [textFiled resignFirstResponder];  

  3. }  


第二种:创建自定义的触摸手势来实现对键盘的隐藏:

[html] view plaincopyprint?在CODE上查看代码片派生到我的代码片

  1. - (void)viewDidLoad  

  2. {  

  3.     [super viewDidLoad];  

  4.     UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(keyboardHide:)];  

  5.     //设置成NO表示当前控件响应后会传播到其他控件上,默认为YES。  

  6.     tapGestureRecognizer.cancelsTouchesInView = NO;  

  7.     //将触摸事件添加到当前view  

  8.     [self.view addGestureRecognizer:tapGestureRecognizer];  

  9. }  

  10.   

  11. -(void)keyboardHide:(UITapGestureRecognizer*)tap{  

  12.     [textFiled resignFirstResponder];  

  13. }  


第三种:修改xib中UIView的Custom class为UIControl,UIControl是一些常用控件如UIButton的父类,是UIView的派生类,实现了对触摸和下按的封装。

1、首先设置xib中得UIView的Custom class为UIControl


2、设置关系事件,将xib中得UIView拖到.h区中

设置好事件为Touch Up Inside

3、编写隐藏代码:

[html] view plaincopyprint?在CODE上查看代码片派生到我的代码片

  1. - (IBAction)touchView:(id)sender {  

  2.      [self.view endEditing:YES];  

  3. }  


好了,以上是三种比较常用的隐藏键盘的方法,每种都可以用于不同的场合和它的利与弊,就看如何运用了。

你可能感兴趣的:(ios,键盘,触摸)