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
System font sizes are not always the same. Beginning in iOS 7 there is Dynamic Type. Users can set their preferred font size in the system settings. This is the recommended way for apps to get and set their font sizes now.
In the Interface Builder you can choose things like Body
or Title 1
under the Font settings. The actual size will be adjusted according to the user's system settings. Programmatically you use UIFont.preferredFont(forTextStyle: )
. See this post for more details about doing this in iOS 10 and Swift 3.
See also