键盘退下的几种方式

作者: 随梦而飞飞 | 来源:发表于2016-02-17 17:37 被阅读585次

1.第一种 输入框放弃第一响应者

[self.MessageTextFiled  resignFirstResponder];

2.第二种 输入框结束编辑

[self.MessageTextFiled  endEditing:YES];

3.第三种 * 让MessageTextFiled所在的控制器的view 结束编辑状态 *

[self.view endEditing:YES];

4.第四种 直接调用

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

//适用于 获得当前UIViewController比较困难的时候用

5.第五种 直接调用

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

相关文章

网友评论

本文标题:键盘退下的几种方式

本文链接:https://www.haomeiwen.com/subject/mhxmkttx.html