I wish use a uisegmentedcontrol in my app with 3 segments but not with the same size, the first and the third smaller than the second... is this possible? how can I do this? thanks
Try with:
[yourSegmentedController widthForSegmentAtIndex:indexOfSegmentYouWantToChange];
Hope it helps.
EDIT:
Can be better to do:
[yourSegmentedController sizeToFit];