在didSelectRowAtIndexPath iPhone SDK中打开手机链接

时间:2010-04-24 21:02:10

标签: iphone-sdk-3.0 didselectrowatindexpath url-link

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

我希望能够使用

打开手机链接
[[UIApplication sharedApplication] openURL:xyz] 

如果单元格的详细文本标签为“phone”。

这可能吗?

由于

2 个答案:

答案 0 :(得分:1)

[[myTableView cellForRowAtIndexPath:path].detailTextLabel.text isEqualToString:@"phone"];

答案 1 :(得分:0)

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

如果这在某种程度上是不可能的,你总是可以自称:

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