如何使用 UISearchBar 搜索网页?

发布于 2024-10-31 12:16:07 字数 140 浏览 3 评论 0原文

我想使用 UISearchBar 并使用它的文本,可以将其进一步放入 url 中,并且该 url 将搜索网络。我无法关闭键盘。我尝试过使用第一响应者,但这似乎不起作用。我是 iPhone 开发新手,对编程世界也相当陌生,所以请耐心等待。如有任何帮助,我们将不胜感激。

I want to use the UISearchBar and used its text which further can be put into a url and that url will search the web. I am unable to dismiss the keyboard. I have tried using the first responder thng but that doesn't seems to work. I am new to iPhone development and fairly new to programming world so please bear with me. any help would be appritiated.

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

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

发布评论

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

评论(1

避讳 2024-11-07 12:16:07

将搜索栏委托添加到 yourclass.h 中,如下所示:

@interface yourclass : yourviewcontroller < UISearchBarDelegate >

然后,在 yourclass.m 中实现该委托的功能:

(void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
{
   [searchBar resignFirstResponder];
   //your code
}

Add a search bar delegate to yourclass.h as following:

@interface yourclass : yourviewcontroller < UISearchBarDelegate >

Then, implement this function of the delegate into yourclass.m:

(void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
{
   [searchBar resignFirstResponder];
   //your code
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文