How would I set the font size of text in a UITextView such that it fills the entire UITextView? I\'d like the user to type in their text, then have the text fill the entire
U can easily do this by using
self.textview.font
self.textview.font = UIFont(name: self.textview.font!.fontName, size: self.textview.frame.size.height / 10)!
divide textview.frame.size.height upon some constant based on your requirement..