0

我在表格视图的一行中添加了 2 个按钮,对于所有行,这些按钮在第一次出现在表格视图中时被点击,当我滚动表格列表时,按钮点击禁用,这是我的代码

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 {
     static NSString *CellIdentifier = @"ImageOnRightCell";
     UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
     cell.selectionStyle = UITableViewCellSelectionStyleGray;
     cell.userInteractionEnabled = NO;
     UIButton *finalPriceBtn=[UIButton buttonWithType:UIButtonTypeCustom];
     UIButton *finalPriceBtn1=[UIButton buttonWithType:UIButtonTypeCustom];

     if (cell == nil)
     {
         cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
         int i=indexPath.row;

         finalPriceBtn.backgroundColor=[UIColor redColor];
         finalPriceBtn.tag=MAINLABEL_TAG;
         finalPriceBtn.frame = CGRectMake(200, 0.0, 100, 50);
         [finalPriceBtn addTarget:self action:@selector(goBtnClk:) forControlEvents:UIControlEventTouchUpInside];
         finalPriceBtn.titleLabel.font=[UIFont systemFontOfSize:12];

         finalPriceBtn.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleHeight;
         [finalPriceBtn setImage:[UIImage imageNamed:@"man.jpg"] forState:UIControlStateNormal ];
         [cell.contentView addSubview:finalPriceBtn];

         finalPriceBtn1.backgroundColor=[UIColor redColor];
         finalPriceBtn1.tag=SECONDLABEL_TAG;
         finalPriceBtn1.frame = CGRectMake(50.0, 0.0, 80.0, 45.0);
         [finalPriceBtn1 addTarget:self action:@selector(goBtnClk:) forControlEvents:UIControlEventTouchUpInside];
         finalPriceBtn1.titleLabel.font=[UIFont systemFontOfSize:12];

         finalPriceBtn1.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleHeight;
         [finalPriceBtn1 setImage:[UIImage imageNamed:@"bulk-female.jpg"] forState:UIControlStateNormal ];
         [cell.contentView addSubview:finalPriceBtn1];
     }
     else
     {
         finalPriceBtn = (UIButton *)[cell.contentView viewWithTag:MAINLABEL_TAG];
         finalPriceBtn1 = (UIButton *)[cell.contentView viewWithTag:SECONDLABEL_TAG];

     }
     return cell;
}
4

1 回答 1

2

发生这种情况是因为,每次您滚动 tableview 时,您的单元格都会被重用,在这种情况下,单元格不是 nil,并且在 之前的代码上方的代码cell==nil会使 userInteractionEnabled 变为 NO。这就是为什么您的按钮不可点击的原因。

第一次这些按钮是可点击的,因为它们没有被分配,我的意思是单元格没有被分配,并且将任何属性设置为未分配的实体都没有效果。希望你明白了。

于 2013-06-03T05:14:05.997 回答