0

我被困在一个我想在图像按钮顶部添加图像的地方,这样当我点击它时按钮的图像就会改变。我必须在 didSelectRow 方法中编写逻辑。因此,我需要编写以下行来添加该图像:

button=[UIButton alloc] initWithFrame:CGRectMake(230,0,40,40];
button.addTarget: self action: @selector(buttonPressed:withEvent:) forControlEvents:UIControlEventTouchUpInside];
button.tag=indexPath.row;
[button setImage: [UIImage imageNamed:@"a.png"] forState:UIControlStateNormal];
[cell addSubview: button];

虽然这在我在 cellForRow 中编写上述代码时有效,但这在 didSelectRow 中不起作用,因为此方法中未定义单元格。

4

2 回答 2

0

在 didSelectRow 中尝试此操作以获取单元格

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
于 2012-10-01T09:27:02.697 回答
0

试试这个

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{  

    UITableViewCell *cell=[tableView cellForRowAtIndexPath:indexPath];
    for (UIButton *button in cell.subviews) {
        if (button.tag==indexPath.row) {
            [button setImage: [UIImage imageNamed:@"another.png"] forState:UIControlStateNormal];
        }
    }
}
于 2012-10-01T09:33:12.770 回答