gpt4 book ai didi

ios - 当文本字段没有 IBOutlet 时关闭键盘

转载 作者:行者123 更新时间:2023-11-29 12:12:06 27 4
gpt4 key购买 nike

当文本字段没有 View Controller 的 IBOutlet 时,如何关闭 iOS 中的键盘?我的案例是一个带有动态原型(prototype)单元格的 UITableView。其中一个单元格包含一个 UITextField,但是我无法添加 IBOutlet,因为重复内容中不允许使用 outlet。

那么当textfield没有outlet时,如何实现关闭键盘呢?

最佳答案

在您的 ViewController.m 文件中添加任何一种方法:

选择-1

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[self.view endEditing:YES];
}

选择-2

UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(resignFieds)];
[self.view addGestureRecognizer:tap];

- (void)resignFieds {

//choice - 1 , check the all subviews and resign textfield
for (UIView * txt in self.view.subviews){
if ([txt isKindOfClass:[UITextField class]] && [txt isFirstResponder]) {
[txt resignFirstResponder];
}
else
{
[self.view endEditing:YES];
}

}
//choice 2 , no need to check any subviews ,
[self.view endEditing:YES];

Note : use any one choice

}

关于ios - 当文本字段没有 IBOutlet 时关闭键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33146109/

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