iOS Foundation: system font size

后端 未结 3 884
余生分开走
余生分开走 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:11

    Just to add to the above answer. The above methods are members of UIFont class. So to get the default button font size...

    float defaultFontSize = [UIFont buttonFontSize]; 
    

提交回复
热议问题