Hi all. I'd like to have all the rows on my table view use UITableViewCellAccessoryNone (e.g. no button on the right) unless they are selected, at which point I want to use UITableViewCellAccessoryDetailDisclosureButton. E.g. only one row (or none if there's no selection) has the button at a time.
Is this possible? Doing the usual thing of implementing accessoryTypeForRowWithIndexPath doesn't seem to work dynamically - e.g. it only gets called once regardless of what's selected.
Thanks