scaledFont(for:maximumPointSize:compatibleWith:)
Returns a version of the specified font that adopts the current font metrics and is constrained to the specified traits and size.
Declaration
func scaledFont(for font: UIFont, maximumPointSize: CGFloat, compatibleWith traitCollection: UITraitCollection?) -> UIFontParameters
- font:
The base font to use when applying the style information. Set the size of your font to the standard Dynamic Type size that you use for the corresponding content. Do not specify a font that has already been scaled; doing so results in an exception.
- maximumPointSize:
The maximum point size allowed for the font. Use this value to constrain the font to the specified size when your interface cannot accommodate text that is any larger.
- traitCollection:
The trait collection to use when determining compatibility. The returned font is appropriate for use in an interface that adopts the specified traits.
Return Value
A version of the specified font with the appropriate style information applied to it, and scaled appropriately for the specified settings.