3

如何在 NSLog 中显示从我的 tableview 中选择的单元格?

4

2 回答 2

4

实现didSelectRowAtIndexPath UITableview 委托并记录indexPath.row

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

    NSLog(@"selected tableview row is %d",indexPath.row);
}
于 2012-09-23T09:18:02.307 回答
3

如果要显示单元格中显示的内容,例如在其 textLabel 上,请在 didSelectRowAtIndexPath 中使用:

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
NSLog(@"selected cell textLabel = %@",cell.textLabel.text);
于 2012-09-23T14:50:37.170 回答