How do we increase the font size of label to match the height of the label?
In Swift 4 or Storyboard for Xcode 9, either programmatically or via interface builder.
I have attempted the following, which has been claimed to work by a few in Swift 3. - SO Q&A
label.minimumScaleFactor = 0.1
label.adjustsFontSizeToFitWidth = true
label.lineBreakMode = .byClipping
label.numberOfLines = 0
For testing purposes, I created a label that is the width of the screen and the height of the screen, yet the font size remains the default size. I also made the settings in the interface builder match that of the code above, with equally unsuccessful results.