gpt4 book ai didi

ios - 触摸屏幕时如何隐藏键盘(搜索栏)

转载 作者:可可西里 更新时间:2023-11-01 03:02:41 25 4
gpt4 key购买 nike

当我单击搜索或单击取消时,键盘会隐藏。但我还希望当我点击屏幕上的某个地方时键盘隐藏起来。我找到了几个文本字段的教程,但我们使用的是搜索栏。

有人能告诉我怎么做吗?

谢谢。

最佳答案

试试这个

在你的 .h 文件中添加 UISearchBar

@property (strong, nonatomic) IBOutlet UISearchBar *searchBar; 

在你的 .m 文件中

- (void)viewDidLoad
{
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]
initWithTarget:self
action:@selector(dismissKeyboard)];

[self.view addGestureRecognizer:tap];
}


- (void) dismissKeyboard
{
// add self
[self.searchBar resignFirstResponder];
}

关于ios - 触摸屏幕时如何隐藏键盘(搜索栏),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16956566/

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