Is it possible to use the autoshrink property in conjunction on multiple lines on a UILabel? for example, the large text size possible on 2 available lines.
UILabel
The answer marked as the solution is hacky and imprecise. UILabel will handle it automatically if you set the following properties correctly:
numberOfLines must be nonzero
numberOfLines
adjustsFontSizeToFitWidth must be YES
adjustsFontSizeToFitWidth
YES
lineBreakMode must not be NSLineBreakByCharWrapping or NSLineBreakByWordWrapping
lineBreakMode
NSLineBreakByCharWrapping
NSLineBreakByWordWrapping