In iOS 7, users can manipulate their fonts from the control panel, which can help (among other things) people with visual impairments.
I am trying to work with a new paradigm using new methods created to support this functionality. For the most part, this is quite simple - just use [label setFont: [UIFont prefferedFontForTextStyle: UIFontTextStyleHeadline]] or any other format you need.
But sometimes I need to adjust them. For example, perhaps the title should be a little larger. I can use this answer to this question. Unfortunately, I cannot figure out how to apply this answer to other changes, for example, just shifting the font without resizing.
source share