UITableViewController 中 UITableViewCell 之间的通信

发布于 2024-11-27 13:31:16 字数 436 浏览 2 评论 0原文

我知道这是一个常见的问题主题。然而,经过广泛搜索后我还没有找到答案,所以我在这里询问。

我有一个 UITableViewController ,其中每一行都是 UITableViewCell 子类的实例。每个 UITableViewCell 子类都有一个 UIButton。最初,所有 UIButton 都有相同的图像(只是一个蓝色圆圈)。点击按钮只会导致该按钮的图像发生变化(例如红色圆圈)。这部分很简单:只需处理 UITableViewCell 子类中的点击并切换图像即可。

这是具有挑战性的部分:当我点击另一个蓝色按钮时,我希望当前为红色的按钮(如果有)将其图像切换回蓝色。 如何告诉此按钮切换其图像?

在哪里跟踪当前为红色的按钮?

I know this is a common question topic. However I haven't found an answer after extensive searching so I'm asking it here.

I have a UITableViewController where each row is an instance of a UITableViewCell subclass. Each UITableViewCell subclass has a UIButton. Initially all UIButtons have the same image (just a blue circle). Tapping a button causes only that button's image to change (say to a red circle). This part is easy: just handle the tap inside the UITableViewCell subclass and toggle the image.

Here's the challenging part: when I tap another blue button I want the button that's currently red (if any) to toggle it's image back to blue. How can I tell this button to toggle it's image?

Where do I keep track of the button that's currently red?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏雨凉 2024-12-04 13:31:16

在 UITableViewCell 子类中实现 - (void)setSelected:(BOOL)selectedAnimated:(BOOL)animated 方法。当单元格被选中时,将 UIButton 图像设置为红色;否则,将 UIButton 图像设置为蓝色。每当选择一个新单元格时就会调用此方法,因此始终只有一个红色按钮单元格。

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    if(selected)
    {
        [myButton setImage:RED_IMAGE forState:UIControlStateNormal]; //or however else you want to change your button's image
    }else
    {
        [myButton setImage:BLUE_IMAGE forState:UIControlStateNormal];
    }

    [super setSelected:selected animated:animated];
}

Implement the - (void)setSelected:(BOOL)selected animated:(BOOL)animated method in your UITableViewCell subclass. When the cell is selected, make the UIButton image red; otherwise, set the UIButton image to blue. This method is called whenever a new cell is selected, so there will always be only one red-button cell.

- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    if(selected)
    {
        [myButton setImage:RED_IMAGE forState:UIControlStateNormal]; //or however else you want to change your button's image
    }else
    {
        [myButton setImage:BLUE_IMAGE forState:UIControlStateNormal];
    }

    [super setSelected:selected animated:animated];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文