iPhone system font

前端 未结 12 534
日久生厌
日久生厌 2020-12-12 18:31

What is the name of the default system font on the iPhone?

I would like to retrieve this for customizing a UIView.

12条回答
  •  -上瘾入骨i
    2020-12-12 19:21

    Here is some update for supporting iOS 7. It has Dynamic Font Size now.

    For any and all apps that support “Dynamic Type,” users can select a font size in iOS 7 that works system wide, simply by visiting the "General" section under "Settings" and selecting "Font Size."

    UIFont *dynamicFont  = [UIFont preferredFontForTextStyle:UIFontTextStyleBody];
    

    And constants list, detailed explanation is here

    NSString *const UIFontTextStyleHeadline;
    NSString *const UIFontTextStyleSubheadline;
    NSString *const UIFontTextStyleBody;
    NSString *const UIFontTextStyleFootnote;
    NSString *const UIFontTextStyleCaption1;
    NSString *const UIFontTextStyleCaption2;
    

提交回复
热议问题