I\'m trying to show a long chunk of text inside a UILabel in one line. The UILabel is a subview of UIScrollView so I can scroll and see the entire UILabel.
My proble
If you want to achieve this with auto layout turned on it's simple. Just make sure you add numberOfLines
numberOfLines
textLabel.adjustsFontSizeToFitWidth = YES; textLabel.numberOfLines = 0;