iOS 回收键盘的方式

回收键盘的方式很多,这里记录自己常用的四种方式。
1、resignFirstResponder
所有继承于UIResponder的子类都可以使用该方法回收键盘
2、重载UIViewController中的touchesBegin方法,然后在里面执行[self.view endEditing:YES];,这样单击该UIViewController的任意地方,就可以收起键盘。
3、通过直接执行[[UIApplication sharedApplication] sendAction: @selector(resignFirstResponder) to:nil from:nil forEvent:nil];,用于不容易获得当前的UIViewController时。
4、直接执行 [[[UIApplication sharedApplication]keyWindow] endEditing:YES];

你可能感兴趣的:(iOS 回收键盘的方式)