iOS Foundation: system font size

后端 未结 3 883
余生分开走
余生分开走 2021-02-12 23:32

I would like to know if systemFontSize in iOS app tableView is always the same for textLabel? This is are depening to style?

For example when I N

3条回答
  •  灰色年华
    2021-02-13 00:32

    System Fonts are describe as following :

    + (CGFloat)labelFontSize;//Returns the standard font size used for labels.
    + (CGFloat)buttonFontSize;//Returns the standard font size used for buttons.
    + (CGFloat)smallSystemFontSize;//Returns the size of the standard small system font.
    + (CGFloat)systemFontSize;//Returns the size of the standard system font.
    

    and you can change the font size without the font family like this :

    cell.textLabel.font = [UIFont systemFontOfSize:14];
    

提交回复
热议问题