gpt4 book ai didi

iphone - ipad/iphone : hide keyboard when user taps anywhere else on the screen

转载 作者:行者123 更新时间:2023-12-03 20:23:33 24 4
gpt4 key购买 nike

我有一个情况,

当我单击出现的搜索栏键盘时,我在同一屏幕上有一些搜索栏。现在,如果我们单击屏幕上的其他任何位置,该键盘是否有可能消失。

请帮我解决这个问题。

提前致谢。

最佳答案

这是此任务的一个非常优雅的解决方案:

- (void)viewDidLoad
{
[super viewDidLoad];
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismissKeyboard)];
[self.view addGestureRecognizer:tap];
}
- (void)dismissKeyboard
{
[searchBar resignFirstResponder];
}

关于iphone - ipad/iphone : hide keyboard when user taps anywhere else on the screen,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5271233/

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