如何在 UITableView 中获取选定的 indexPath.section 和 indexPath.row 值?

Posted

技术标签:

【中文标题】如何在 UITableView 中获取选定的 indexPath.section 和 indexPath.row 值?【英文标题】:How to get selected indexPath.section and indexPath.row value in UITableView? 【发布时间】:2013-06-12 07:08:19 【问题描述】:

我在 tableview 中插入了 2 个部分和 2 行,然后我尝试使用 UITapGestureRecognizer 获取选定的部分和行值,但我必须只获得 indexPath.section 值,我想要部分和行值。有可能这样做吗?请帮帮我

提前致谢

我试过这个:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath


    UITableViewCell *cell=[[UITableViewCell alloc]  initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
    cell.selectionStyle = UITableViewCellSelectionStyleGray;

//    Add the PatientName Label

    UILabel *cellTitle=[[UILabel alloc]initWithFrame:CGRectMake(100, 7, 300, 30)];
    cellTitle.userInteractionEnabled = YES;
    cellTitle.tag = indexPath.section;
    [cellTitle setBackgroundColor:[UIColor clearColor]];
    [cellTitle setFont:[UIFont fontWithName:@"Helvetica" size:14]];
    [cellTitle setText:[[cellArray objectAtIndex:indexPath.section] objectAtIndex:indexPath.row]];
    [cell.contentView addSubview:cellTitle];

    UITapGestureRecognizer *labelTap = [[UITapGestureRecognizer alloc] init];
    [labelTap addTarget:self action:@selector(viewPatient:)];
    [labelTap setDelegate:nil];
    [labelTap setNumberOfTapsRequired:1];
    [cellTitle addGestureRecognizer:labelTap]; // cellTitle add here
    [labelTap release];


-(void)viewPatient:(id)sender

    UITapGestureRecognizer *lSender = sender;
    UILabel *lObjLabel = (UILabel *)[lSender view];
    NSLog(@"tag:%d",lObjLabel.tag); // only get indexpath.section value

【问题讨论】:

【参考方案1】:

使用此代码..

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:[sender tag] inSection:
[[sender superview] tag]];

【讨论】:

【参考方案2】:

写下这一行..

[cellTitle setText:[[cellArray objectAtIndex:indexPath.row] objectAtIndex:indexPath.section]];

而不是

[cellTitle setText:[[cellArray objectAtIndex:indexPath.section] objectAtIndex:indexPath.row]];

【讨论】:

以上是关于如何在 UITableView 中获取选定的 indexPath.section 和 indexPath.row 值?的主要内容,如果未能解决你的问题,请参考以下文章

如何检查 UITableView 中的选定行属于哪个组/部分

如何从数组中过滤多个选定值并将其从 uibutton 加载到其他 uitableview

如何在 iOS 中从 UITableView 播放选定的媒体项?

如何从表格视图中的选定单元格中获取文本?

如何从 UITableView 中删除选定的行? [复制]

在 UiTableView reloadData 之后保留选定的部分/行