Search code examples
iosuiviewcontrollersizeuitoolbaruisegmentedcontrol

ios uisegmentedcontrol with different sizes


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


Solution

  • Try with:

    [yourSegmentedController widthForSegmentAtIndex:indexOfSegmentYouWantToChange];
    

    Hope it helps.

    EDIT:

    Can be better to do:

    [yourSegmentedController sizeToFit];