如何识别tableview中自定义单元格中单击按钮的行索引和节号

时间:2014-11-26 11:29:55

标签: ios objective-c uitableview sections

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *simpleTableIdentifier = @"CustomCell";

    cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

    if (cell == nil) {

        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner: self options: nil ];
        cell = [nib objectAtIndex:0];


    }
    //cell.lblName.text = [items objectAtIndex:indexPath.row];
    NSMutableDictionary *dic = [items objectAtIndex:indexPath.row];
    cell.imgface.image = [dic objectForKey:@"Image"];
    cell.imgface.layer.cornerRadius = cell.imgface.frame.size.width / 2;
    cell.imgface.layer.borderWidth = 3.0f;
    cell.imgface.layer.borderColor = [UIColor whiteColor].CGColor;
    cell.imgface.clipsToBounds = YES;
    cell.lblName.text = [dic objectForKey:@"Name"];
    [cell.btnPhone setTitle:[dic objectForKey:@"Phone"] forState:(UIControlStateNormal)];
    cell.btnPhone.tag = indexPath.row;
    cell.btnstar.tag = indexPath.row;
    [cell.btnPhone addTarget:self action:@selector(dial:) forControlEvents:(UIControlEventTouchUpInside)];
    [cell.btnstar  addTarget:self action:@selector(toggleimage:) forControlEvents:UIControlEventTouchUpInside];
    if (indexPath.section == 0)
    {
        star = [UIImage imageNamed:@"Star-Favorites.png"];
        [cell.btnstar setBackgroundImage:star forState:UIControlStateNormal];
    }
    else
    {
        star = [UIImage imageNamed:@"keditbookmarks.png"];
        [cell.btnstar setBackgroundImage:star forState:UIControlStateNormal];

    }

    return cell;
}

3 个答案:

答案 0 :(得分:2)

write below code in button IBAction and you will get indexpath.row and indexpath.section

CGPoint buttonPosition = [sender convertPoint:CGPointZero toView:self.tableView];
NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:buttonPosition];
NSLog(@"selected tableview row is %d",indexPath.row);

答案 1 :(得分:0)

你有不同的方法可以做到这一点:
•当您配置单元格时,单元格的tag或按钮作为行,并在IBAction上检索(我讨厌tag s) •定义表格单元格的委托,并在配置时设置它。然后调用委托方法传递单元格并找到相对索引(-indexPathForCell:
•与之前相同,但通过通知而不是代理

传递单元格

答案 2 :(得分:0)

首先,按钮IBAction调用此方法

- (IBAction)btnClick:(UIButton)sender 
{
   UITableViewCell *cellOfcontrol=[self cellWithSubview:sender];
   NSIndexPath *indexPath = [self.tableview indexPathForCell:cellOfcontrol];
}

cellWithSubview函数

   - (UITableViewCell *)cellWithSubview:(UIView *)subview 
   {

    while (subview && ![subview isKindOfClass:[UITableViewCell self]])
    subview = subview.superview;
   return (UITableViewCell *)subview;
}