UITableViewController 中 UITableViewCell 之间的通信
我知道这是一个常见的问题主题。然而,经过广泛搜索后我还没有找到答案,所以我在这里询问。
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 UITableViewCell 子类中实现
- (void)setSelected:(BOOL)selectedAnimated:(BOOL)animated
方法。当单元格被选中时,将 UIButton 图像设置为红色;否则,将 UIButton 图像设置为蓝色。每当选择一个新单元格时就会调用此方法,因此始终只有一个红色按钮单元格。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.