I have a subclass of UILabel, which is supposed to update its text when the user types something. Naturally, as the length of text increases, the size of the label must adju
This should to the trick:
self.eskLabel.adjustsFontSizeToFitWidth = YES;