我在 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
}

最佳答案

使用此代码..

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

关于iphone - 如何在 UITableView 中获取选定的 indexPath.section 和 indexPath.row 值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17059574/

10-14 20:10