I want my UITextView font size to fill the width of the view.
So if I have the text:
"I wish I \n
knew what \n
I was doing"
I would hope it would expand to be a good size for the width of the device.
UILabels have adjustsFontSizeToFitWidth
but if I make a separate label for each line then the font sizes will be different because the strings are different lengths.
How do I pick the right size programmatically?