点击屏幕隐藏键盘的正确写法

来源:互联网 发布:浙江移动网络运营岗位 编辑:程序博客网 时间:2024/05/16 17:51
方法一
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{    [self.view endEditing:YES];}

方法二
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event {    [self.userNameView.inputTextField resignFirstResponder];    [self.passwordView.inputTextField resignFirstResponder];}


1 0