Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the following code to implement and subsequently change the font size of each segment in the UISegmented Control

//Set up segment control
UISegmentedControl *tempSegmentControl = [[UISegmentedControl alloc]initWithItems:[NSArray arrayWithObjects:@"Friends",@"Popular", nil]];
tempSegmentControl.frame = CGRectMake(-8, -1, 336, 30);

self.segmentControl = tempSegmentControl;
[self.segmentControl setWidth:168 forSegmentAtIndex:0];
[self.segmentControl setWidth:168 forSegmentAtIndex:1];
self.segmentControl.selectedSegmentIndex = 0;
[self.segmentControl addTarget:self action:@selector(toggleControls:) forControlEvents:UIControlEventValueChanged];
[self.segmentControl setSegmentedControlStyle:UISegmentedControlStylePlain];

//TO CHANGE FONT SIZE OF EACH SEGMENT
for (id segment in [self.segmentControl subviews]) 
{
    for (id label in [segment subviews]) 
    {
        if ([label isKindOfClass:[UILabel class]])
        {
            [label setTextAlignment:UITextAlignmentCenter];
            [label setFont:[UIFont boldSystemFontOfSize:14]];
        }
    }           
}

This works initially (see screenshot below)

enter image description here

However, after I click on the "popular" tab (inactive tab), the font size seem to return to their original default font size

enter image description here

What can I do to prevent the font size from changing back to the default size?

share|improve this question
Can't you set the initial font in Interface Builder? – Besi Mar 13 '12 at 2:31

3 Answers

Probably not the cleanest way, but it works if you run the for-loop on the 'value Changed' event of the UISegmentedControl control.

Update: This is the proper way, available in iOS 5 and later:

NSDictionary *textAttributes = [NSDictionary dictionaryWithObjectsAndKeys:[UIFont boldSystemFontOfSize:14], UITextAttributeFont, nil];
[self.segmentControl setTitleTextAttributes:textAttributes forState:UIControlStateNormal];
share|improve this answer

Check this link.. Font change issue

You can set the font in Interface Builder

share|improve this answer

http://chris-software.com/index.php/tag/uisegmentedcontrol/

check out this its ans

codeButton.segmentedControlStyle = UISegmentedControlStyleBar;
codeButton.momentary = YES;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.