iphone 上 uisearchbar 的异步调用
我需要设置一个异步调用来研究远程服务器上 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用委托方法
来发送您的请求并使其自动完成,但我会使用
And 在此方法中向您的网络服务发出发布或获取请求。
使用 ASIHTTPRequest 或 RestKit。
我想你知道该怎么做吗?
You could use the delegate method
To send your request and make it auto complete, but i would use the
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?