开发者社区> 问答> 正文

请问怎么点击修改制定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];

不知道哪卡主了,没反应。

展开
收起
爵霸 2016-05-27 11:39:20 1754 0
1 条回答
写回答
取消 提交回答
  • 在你的selector里面添加下面代码:

    - (void)selector:(id)sender {
      //自己添加代码
      UIButton *button = (UIButton *)sender;
      [button setImage:[UIImage imageNamed:@"newicon.png"] forState:UIControlStateNormal];
      //自己添加代码
    }
    2019-07-17 19:17:34
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载