在 didSelectRowAtIndexPath iPhone SDK 中打开电话链接
是否可以根据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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您为表视图提供数据源,您可以直接检查数据而不是表视图单元格。
如果这在某种程度上不可能,您可以随时调用自己:
[[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.