iPhone system font

前端 未结 12 501
日久生厌
日久生厌 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条回答
  •  有刺的猬
    2020-12-12 19:16

    Category UIFontSystemFonts for UIFont (UIInterface.h) provides several convenient predefined sizes.

    @interface UIFont (UIFontSystemFonts)
     + (CGFloat)labelFontSize;
     + (CGFloat)buttonFontSize;
     + (CGFloat)smallSystemFontSize;
     + (CGFloat)systemFontSize;
    @end 
    

    I use it for chat messages (labels) and it work well when I need to get size of text blocks.

     [UIFont systemFontOfSize:[UIFont labelFontSize]];
    

    Happy coding!

提交回复
热议问题