点击Done隐藏键盘
// action 事件选择 Did End On Exit
- (IBAction)textFieldDoneEditing:(id)sender {
[sender resignFirstResponder];
}
点击空白处隐藏键盘
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[self.view endEditing:YES];
}
点击Done隐藏键盘
// action 事件选择 Did End On Exit
- (IBAction)textFieldDoneEditing:(id)sender {
[sender resignFirstResponder];
}
点击空白处隐藏键盘
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[self.view endEditing:YES];
}
本文标题:iOS隐藏键盘方式
本文链接:https://www.haomeiwen.com/subject/gcgwottx.html
网友评论