For esthetic reasons, I am displaying the currency symbol on a segmented control but i would like to return the currency code in 3 letters. See how I did this:
NSArray *itemArray = [NSArray arrayWithObjects: @"EUR", @"USD", @"GBP", nil];
self.writePriceCurrency = [[UISegmentedControl alloc] initWithItems:itemArray];
[self.writePriceCurrency setTitle:@"€" forSegmentAtIndex:0];
[self.writePriceCurrency setTitle:@"$" forSegmentAtIndex:1];
[self.writePriceCurrency setTitle:@"£" forSegmentAtIndex:2];
I know i could just to a switch() {} in the function that catches the change of value and return the correct code depending on the index, but that would be hard-coded. I would prefer to do this directly so that I can dynamically change the segmentedcontrol in the future.
Could you help me understand how we get the item corresponding to the selected segment?