I am trying to vertically align the text in the UILabel view of my app. The problem is that I want the text to be vertically aligned to the top and the size of the label to
There's a way without subclassing, using a button or rolling your own.
set the number of lines to 0, then call sizeToFit.
[label setNumberOfLines:0]; [label sizeToFit];
More details here as i think someone else linked to: Vertically align text to top within a UILabel