gpt4 book ai didi

iphone - 当 UISearchBar 失去焦点时隐藏键盘

转载 作者:行者123 更新时间:2023-12-03 18:22:43 29 4
gpt4 key购买 nike

我不知道为什么这么难。我的页面顶部有一个 UISearchBar。当用户在 UISearchBar 中键入内容时,它将自动过滤搜索栏下方的 UITableView 中的结果。不需要搜索按钮,因为我在按下按键时进行搜索。

应用程序的流程是,用户在搜索栏中键入搜索(显示键盘),然后在表格 View 中滚动结果 - 此时键盘需要消失。

我很难让键盘消失。

我知道我需要做:

    [searchBar resignFirstResponder];

让键盘消失,但我找不到需要在哪个委托(delegate)上执行此操作。我想在用户触摸表格 View 时立即执行此操作。

有什么想法吗?

最佳答案

试试这个:

- (void)viewWillDisappear:(BOOL)animated {

[super viewWillDisappear:animated];

[searchBar resignFirstResponder];

}

这对我有用

关于iphone - 当 UISearchBar 失去焦点时隐藏键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/888289/

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