如何在 uisearchbar 中关闭键盘?

发布于 2024-10-31 11:33:45 字数 141 浏览 3 评论 0原文

我正在开发一个基于导航的应用程序。在我的应用程序中,用户可以使用 UISearchBar 进行搜索。现在我希望在用户点击搜索(或不确定是哪一个)后关闭键盘。我尝试按照 UITextField 的方式进行操作,但没有成功。所以任何帮助将不胜感激。

谢谢,

I am working a navigation based application. In my application user can search using the UISearchBar. Now I want the keyboard to be dismissed after the user hits search (or done not sure which one it is). I tried doing the way it is done for UITextField but didn't work. so any help would be appreciated.

thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里寻她 2024-11-07 11:33:45

希望这对其他正在寻找此内容的人有所帮助。

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar {
    [sbSearch resignFirstResponder];
}

使用 UISearchBarDelegate。

Hope this helps for anyone that else was looking for this.

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar {
    [sbSearch resignFirstResponder];
}

Using UISearchBarDelegate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文