遵循UITextFieldDelegate的代理方法
- (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent *)event{
[self.view endEditing:YES];
}
这个方法只能适用控件是放在view上面,才有效,当遇到UIScrollView、UITableView就不太好使了。
下面介绍一种万能用法,使用手势隐藏键盘
UITapGestureRecognizer *myTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(scrollTap:)];
[_myTableView addGestureRecognizer:myTap];
在手势方法中隐藏键盘
- (void)scrollTap:(id)sender {
[self.view endEditing:YES];
}
可以直接调用resignFirstResponder方法
[[UIApplicationsharedApplication]sendAction:@selector(resignFirstResponder)to:nilfrom:nilforEvent:nil];
网友评论