美文网首页iOS技术
iOS隐藏键盘方式

iOS隐藏键盘方式

作者: 213dfddbef5e | 来源:发表于2017-04-02 01:24 被阅读175次

点击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