Simply Use following Code & set the "size" field according to your desired font
[[UISegmentedControl appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:@"STHeitiSC-Medium" size:13.0], UITextAttributeFont, nil] forState:UIControlStateNormal];
NOTE:In latest OS UITextAttributeFont is deprecated so use NSFontAttributeName instead..
This will Change the Font size inside your UI Segmented Control in ios...
Thanks For Reading..
0 Comment(s)