是否可以根据detailTextLabel
中的indexPath确定行didSelectRowAtIndexPath
?
我希望能够使用
打开手机链接[[UIApplication sharedApplication] openURL:xyz]
如果单元格的详细文本标签为“phone”。
这可能吗?
由于
答案 0 :(得分:1)
[[myTableView cellForRowAtIndexPath:path].detailTextLabel.text isEqualToString:@"phone"];
答案 1 :(得分:0)
假设您提供了表格视图的数据源,您可以直接检查数据而不是表格视图单元格。
如果这在某种程度上是不可能的,你总是可以自称:
[[tableView dataSource] tableView:tableView cellForRowAtIndexPath:indexPath];
并检查生成的单元格。