在 -didSelectRowAtIndexPath 上调用特定的 Web 服务
我正在实现使用 Web 服务的应用程序(首先进行身份验证,然后使用提供的令牌作为 URL 中的标头字段调用不同的 Web 服务)
在身份验证阶段之后,我将向用户显示主页。 在主页上,我显示 UITableView(上面有 9 个单元格)。
如果这些是按钮,我会编写单独的 9 个“onButtonClick”函数来相应地调用 9 个不同的 Web 服务。
用于实现此结构的最佳实现(或流程)是什么?
如果您想了解更多详细信息,请告诉我。 谢谢。
I am implementing the application which consumes webservice (first authentication and then calling different webservices with provided token as a header field in URL)
After the authentication phase, I am showing the Home page to the user.
On Home page i am showing UITableView (with 9 cells on it.)
If those were the buttons I would write separate 9 - "onButtonClick" functions to call 9 different webservices, accordingly.
What can be best implementation (or flow), for implementing this structure.
Let me know if you want more details.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将服务的 URL 保留在附加到表视图的视图控制器(或委托)的数组中,然后使用所选行作为数组的索引并调用服务。
You could keep the URLs for the services in an array attached to the table view's view controller (or delegate really) and then use the selected row as an index into the array and call the service.
无需单独编写九个方法,
您可以使用 JASON COCO 方式,因为他说将 URL 存储在数组中。
当您单击特定行时。您应该将该 URL 传递给 Web 服务方法,
假设您有
No need to write nine methods separately
you can use the JASON COCO way as he said store the URL in an array.
when you will click on a particular row. you should pass that URL to Web services method
suppose you have