I have a table displaying items. Each cell has a button that is used to display something else about the item. In order to track what is being displayed (used in the parent view as the table is in a modal), I set the button to be selected.
My issue is that I want to ensure only ONE button is "selected" at a time. So if user taps button A, then later taps button B, how can I "deselect" button A?
Again, the buttons are embedded in each cell, so how can I iterate through each cell and disable the buttons (WITHOUT reloading the table data)?