Possible Duplicate:
Change font size of UISegmentedControl
how to change the font size of UISegmentedControl text?
How i can change the text size of Segmented Control ?
anyone can help me !!
Possible Duplicate:
Change font size of UISegmentedControl
how to change the font size of UISegmentedControl text?
How i can change the text size of Segmented Control ?
anyone can help me !!
Note: This is only available for iOS5+.
UIFont *font = [UIFont boldSystemFontOfSize:12.0f];
NSDictionary *attributes = [NSDictionary dictionaryWithObject:font
forKey:UITextAttributeFont];
[segmentedControl setTitleTextAttributes:attributes
forState:UIControlStateNormal];