UIFont "short" 样式
UIFont "short" style
使用 CSS 属性 在我使用的 WebView 中设置 SF 字体 - -apple-system-short-body
尝试以编程方式实现此字体时,我找不到此样式。我相信这在某种程度上与跟踪有关,但我无法弄清楚。
编辑
我知道我可以使用 -
UIFont.preferredFontForTextStyle(UIFontTextStyleBody)
但是当我寻找 -apple-system-short-body
时,这将等同于 -apple-system-body
有什么帮助吗?
谢谢
根据this answer, Short corresponds to the UIFontDescriptorTraitTightLeading
symbolic trait。
使用 CSS 属性 在我使用的 WebView 中设置 SF 字体 - -apple-system-short-body
尝试以编程方式实现此字体时,我找不到此样式。我相信这在某种程度上与跟踪有关,但我无法弄清楚。
编辑
我知道我可以使用 -
UIFont.preferredFontForTextStyle(UIFontTextStyleBody)
但是当我寻找 -apple-system-short-body
-apple-system-body
有什么帮助吗? 谢谢
根据this answer, Short corresponds to the UIFontDescriptorTraitTightLeading
symbolic trait。