I would think this would be an easy thing since people would want to do it often, but I've searched around and tried different approaches, but nothing seems to work.
All I want to do is create a UITextView that has two lines of Text.
If the text is too long, and goes into 3 lines, I want to autosize the font until it fits into 2 lines.
Conceptually, I was planning on doing a recursive function that keeps shrinking the text until it fits on two lines (based on the height of the text field), but I couldn't pull it off.
Any suggestions are greatly appreciated.