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?