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
Try this, it's a lot simpler:
while (self.contentSize.height > self.frame.size.height) { self.font = [self.font fontWithSize:self.font.pointSize -1]; }