如何点击修改制定cell中的button?

应用里有分组表视图,分为两部分。第一个部分有一行,另一部分有5行。我在cell里添加了按钮。代码如下:

 UIButton *newBtn=[UIButton buttonWithType:UIButtonTypeCustom];
    [newBtn setFrame:CGRectMake(5,10,35,30)];
    [newBtn setImage:[UIImage imageNamed:@"icon.png"] forState:UIControlStateNormal];
    [newBtn addTarget:self action:@selector(selector:)        forControlEvents:UIControlEventTouchUpInside];
    newBtn.tag=4;
    [cell.contentView addSubview:newBtn];

现在我想改变对应cell里面button的图片,我试了下面的方法:

UITableViewCell *cell=(UITableViewCell *)[sender superview];

    NSIndexPath *path=[self.mtableview indexPathForCell:cell];

不知道哪卡主了,没反应。帮忙解决,谢谢~

在你的selector里面添加下面代码:

- (void)selector:(id)sender {
  //自己添加代码
  UIButton *button = (UIButton *)sender;
  [button setImage:[UIImage imageNamed:@"newicon.png"] forState:UIControlStateNormal];
  //自己添加代码
}