Change font size of UISegmentedControl

前端 未结 16 1847
死守一世寂寞
死守一世寂寞 2020-11-28 20:54

Can anyone please tell me how can I change the font type and size of UISegmentedControl?

16条回答
  •  情书的邮戳
    2020-11-28 21:16

    // Set font-size and font-femily the way you want
    UIFont *objFont = [UIFont fontWithName:@"DroidSans" size:18.0f];
    
    // Add font object to Dictionary
    NSDictionary *dictAttributes = [NSDictionary dictionaryWithObject:objFont forKey:NSFontAttributeName];
    
    // Set dictionary to the titleTextAttributes
    [yourSegment setTitleTextAttributes:dictAttributes forState:UIControlStateNormal];
    

    If you have any query, Contact me.

提交回复
热议问题