簡體   English   中英

如何在TableView內的自定義單元格中識別單擊的按鈕的行索引和節號

[英]How to identify the row index and section number of a clicked button in a custom cell inside tableview

-(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;
}
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);

您有一些不同的方法可以做到這一點:
•在配置單元格時,將單元格或按鈕的tag設置為行,然后在IBAction上進行檢索(盡管我討厭tag
•為表單元格定義一個委托,並在配置它時進行設置。 然后調用傳遞該單元格的委托方法並找到相對索引( -indexPathForCell:
•與以前相同,但是通過通知而不是委托來傳遞單元格

首先,按鈕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;
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM