I'm having trouble having text fit in my UILabel using iOS 10 if the text exceeds the size of the width/height constraints of my label.
This is the size inspector in the Storyboard for the UILabel:
I want to UILabel itself to always have a fixed width and height as it currently has in the Storyboard. I just want the text to word wrap/change font size and do whatever it has to, to fit the confines of that width/height specification. I've tried the following on the UILabel:
adjustsFontSizeToFitWidth
numberOfLines = 0
I can't seem to get the right configuration.