iOS收起键盘的n种方法

1 普通的视图对象使用 resignFirstResponder 方法即可

2 在viewController中使用

[self.view endEditing:YES];

3 直接执行

 [[UIApplication sharedApplication]sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];
//或者
  [[[UIApplication sharedApplication] keyWindow] endEditing:YES];

你可能感兴趣的:(iOS收起键盘的n种方法)