码迷,mamicode.com
首页 > 移动开发 > 详细

iOS-回收键盘的几种方法

时间:2016-09-30 15:42:16      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

在开发过程中,为了实现点击屏幕其它位置收起键盘的目的,我们使用过许多的方法。
如果是在UIViewController中收起键盘,除了通过调用控件的resignFirstResponder方法外,还有其它的方法。

第一种方法

重载- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event方法,然后在此方法中执行[self.view endEditing:YES]。
代码示例如下:

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    [self.view endEditing:YES];
}

如果获取当前UIViewControll比较困难时,可以采用第二种或者第三种方法。直接执行以下两个方法中的一个即可达到效果。

第二种方法

[[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];

第三种方法

[[[UIApplication sharedApplication] keyWindow] endEditing:YES];

iOS-回收键盘的几种方法

标签:

原文地址:http://www.cnblogs.com/xiaoxiaoyublogs/p/5923555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!