in fact the title contains my question. I have a UISegmentedControl, and need to deselect currently selected tab. I tried:
[menu setSelectedSegmentIndex:-1];
menu being the UBOutlet for uisegmentedcontrol but this gives me exception. anyone have some idea? thanks peter
The right way to do this is:
[menu setSelectedSegmentIndex:UISegmentedControlNoSegment];