usesStandardTextScaling
A Boolean value that determines the rendering scale of the text.
Declaration
var usesStandardTextScaling: Bool { get set }Discussion
When the value of this property is true, UIKit automatically adjusts the rendering of the text in the text view to match the standard text scaling.
When using the standard text scaling, font sizes in the text view appear visually similar to how they would render in macOS and non-Apple platforms, and copying the contents of the text view to the pasteboard preserves the original font point sizes. This effectively changes the display size of the text without changing the actual font point size. For example, text using a 13-point font in iOS looks like text using a 13-point font in macOS.
If your app is built with Mac Catalyst, or if your text view’s contents save to a document that a user can view in macOS or other platforms, set this property to true.
The default value of this property is false.