在 didSelectRowAtIndexPath iPhone SDK 中打开电话链接

发布于 2024-08-30 12:01:46 字数 241 浏览 12 评论 0原文

是否可以根据didSelectRowAtIndexPath中的indexPath确定行的detailTextLabel

我希望能够打开电话链接

[[UIApplication sharedApplication] openURL:xyz] 

如果单元格具有详细文本标签“电话”,

。这可能吗?

谢谢

Is it possible to determine a row's detailTextLabel based on an indexPath in didSelectRowAtIndexPath?

I want to be able to open a phone link using

[[UIApplication sharedApplication] openURL:xyz] 

if the cell has the detail text label "phone".

Is this possible?

Thanks

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

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

发布评论

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

评论(2

对你的占有欲 2024-09-06 12:01:46
[[myTableView cellForRowAtIndexPath:path].detailTextLabel.text isEqualToString:@"phone"];
[[myTableView cellForRowAtIndexPath:path].detailTextLabel.text isEqualToString:@"phone"];
揽月 2024-09-06 12:01:46

假设您为表视图提供数据源,您可以直接检查数据而不是表视图单元格。

如果这在某种程度上不可能,您可以随时调用自己:

[[tableView dataSource] tableView:tableView cellForRowAtIndexPath:indexPath]; 并检查生成的单元格。

Assuming that you provide the data source for the table view, you could check your data directly instead of the table view cell.

If this is somehow not possible, you could always call yourself:

[[tableView dataSource] tableView:tableView cellForRowAtIndexPath:indexPath]; and inspect the resulting cell.

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