iphone 上 uisearchbar 的异步调用

发布于 2024-12-03 00:19:42 字数 123 浏览 2 评论 0原文

我需要设置一个异步调用来研究远程服务器上 Tableview 上的 uisearchbar? 我按照本教程在表格视图上实现搜索栏,但在本教程中元素列表是静态的,而在我的情况下,我需要在远程服务器上搜索。

你能帮忙吗?

I need to set an asynchronous call for research on uisearchbar on Tableview on remote server?
I follow this tutorial to implement the searchbar on tableview but in this tutorial the list of element is static, while in my case I need to search on remote server.

Can you help?

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

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

发布评论

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

评论(1

小猫一只 2024-12-10 00:19:42

您可以使用委托方法

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText

来发送您的请求并使其自动完成,但我会使用

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar

And 在此方法中向您的网络服务发出发布或获取请求。

使用 ASIHTTPRequest 或 RestKit。
我想你知道该怎么做吗?

You could use the delegate method

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText

To send your request and make it auto complete, but i would use the

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar

And in this method make a post or get request to your webservice.

Use ASIHTTPRequest for it or RestKit.
I think you know how to do that?

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