iOS收起键盘的n种方法
2017-12-18 本文已影响0人
福利加班死
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];