I have a segmented control where the user can select how to order a list. Works fine.
However, I would like that when an already selected segment is tapped, the order gets inverted. I have all the code in place, but I don’t know how to register the taps on those segments. It seems the only control event you can use is UIControlEventValueChanged, but that isn’t working (since the selected segment isn’t actually changing).
Is there a solution for this? And if so, what is it?
Thanks in advance!
You can subclass
UISegmentedControl, and thenoverride setSelectedSegmentIndex:If using IB, make sure you set the class of your
UISegmentedControlto your subclass.Now you can listen for the same
UIControlEventValueChangedas you would normally, except if the user deselected the segment, you will see aselectedSegmentIndexequal toUISegmentedControlNoSegment: