在 -didSelectRowAtIndexPath 上调用特定的 Web 服务

发布于 2024-12-23 15:01:21 字数 261 浏览 1 评论 0原文

我正在实现使用 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 技术交流群。

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

发布评论

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

评论(2

扎心 2024-12-30 15:01:21

您可以将服务的 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.

薆情海 2024-12-30 15:01:21

无需单独编写九个方法,

您可以使用 JASON COCO 方式,因为他说将 URL 存储在数组中。

当您单击特定行时。您应该将该 URL 传递给 Web 服务方法,

假设您有

- (void)tableView:(UITableView *)tableView1 didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

  NSString* urlString=[self.URLArray objectAtIndex:indexPath.row];

  [self callWebSerciceWithUrl:urlString];
}

-(void)callWebSerciceWithUrl:(NSString* )Url{

 //Use that URL String for calling web services...

 //You Should write your Remaining web service Code here...
}

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

- (void)tableView:(UITableView *)tableView1 didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

  NSString* urlString=[self.URLArray objectAtIndex:indexPath.row];

  [self callWebSerciceWithUrl:urlString];
}

-(void)callWebSerciceWithUrl:(NSString* )Url{

 //Use that URL String for calling web services...

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