gpt4 book ai didi

ios - 在 iwatch 中触摸 UITextField 外部时关闭键盘

转载 作者:行者123 更新时间:2023-11-28 21:41:39 24 4
gpt4 key购买 nike

我知道当我想关闭键盘时我需要告诉我的 UITextField 退出第一响应者,但我不确定如何知道用户何时按下了 View 外

最佳答案

您可以通过调用下面提供的触摸 View 委托(delegate)方法来实现这一点。

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {

UITouch *touch = [[event allTouches] anyObject];

if (![[touch view] isKindOfClass:[UITextField class]]) {
[self.view endEditing:YES];
}
[super touchesBegan:touches withEvent:event];
}

如有任何疑问,请告诉我。

关于ios - 在 iwatch 中触摸 UITextField 外部时关闭键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31806493/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com